Timezone conversion in php

后端 未结 9 1702
我寻月下人不归
我寻月下人不归 2020-11-22 04:19

Can anyone suggest an easy method to convert date and time to different timezones in php?

9条回答
  •  悲&欢浪女
    2020-11-22 04:21

    DateTime::setTimezone -- date_timezone_set — Sets the time zone for the DateTime object

    Object oriented style

    format('Y-m-d H:i:sP') . "\n";
    
    $date->setTimezone(new DateTimeZone('Pacific/Chatham'));
    echo $date->format('Y-m-d H:i:sP') . "\n";
    ?>
    

    Procedural style

    
    

    The above examples will output:

    2000-01-01 00:00:00+12:00
    2000-01-01 01:45:00+13:45
    

提交回复
热议问题