我正在处理日历应用程序.在这个来自不同时区的用户创建/查看事件.
我想按照以下方法以UTC格式保存事件时间并在用户的本地时间显示它们.注意:用户具有首选时区设置.
要将事件开始时间保存为UTC时间戳:
$timezone = new DateTimeZone( $user_timezone_name );
$utcOffset = $timezone->getOffset( new DateTime( $event_start_time_string_local ) );
$event_start_timestamp_local = maketime( $event_start_time_string_local );
//Now add/subtract $utcOffset to/from $event_start_timestamp_local to get event's start //time timestamp in UTC and save this result in DB.
要在用户的时区中获取事件开始时间:
date_default_timezone_set( $user_timezone_name );
$eventTimeLocalTime = date("Y-m-d H:i:s", $event_start_timestamp_in_UTC );
哪里:
user_timezone_name is user's timezone setting.
event_start_time_string_local is event's start time string in local/civil time.
event_start_timestamp_in_UTC is event's start time timestamp in UTC.
我的问题:
>上面使用的PHP API是否负责所有区域的DST?
> DST时间本身会在不同年份发生变化,PHP如何获取有关此信息的信息?我们需要升级PHP吗?如果是这样,我们需要升级所有或特定的PHP库吗?
参考文献:
– does-phps-date-default-timezone-set-adjust-to-daylight-saving
– get-timezone-offset-for-a-given-location
解决方法:
你太过于复杂了.要使用DateTime在两个时区之间进行转换,请执行以下操作:
date_default_timezone_set('Asia/Kolkata'); // YOUR timezone, of the server
$date = new DateTime($input, new DateTimeZone('Asia/Tokyo')); // USER's timezone
$date->setTimezone(new DateTimeZone('UTC'));
echo $date->format('Y-m-d H:i:s');
这会将用户的本地时区转换为UTC.换句话说,要在用户的本地时间显示时间,请交换两个时区.
是的,PHP负责DST.必要的转换规则是PHP安装的一部分.您可以通过更新PHP或更新timezonedb:http://pecl.php.net/package/timezonedb来使它们保持最新.