php convert local time to utc time taking into consideration Daylight savings

StackOverflow https://stackoverflow.com/questions/17192751

  •  01-06-2022
  •  | 
  •  

سؤال

suppose I have a certain date:

$date = mktime($hour, $minute, $second, $month, $day, $year);

this date is in local time, now how can I convert it to utc time and store the new hour, minute ... in php variables similar to $hour, $minute ...

هل كانت مفيدة؟

المحلول

You can get UTC time with gmdate: http://php.net/manual/en/function.gmdate.php

Also you can change your timezone to UTC: date_default_timezone_set('UTC');

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top