22

我正在开发一个日历应用程序。在此,来自不同时区的用户创建/查看事件。我正在考虑按照以下方法以 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 时间本身在不同年份会发生变化,PHP 是如何获取这方面的信息的?我们需要升级 PHP 吗?如果是这样,我们是否需要升级所有或特定的 PHP 库?

参考:-does-phps-date-default-timezone-set-adjust-to-daylight-saving - get-timezone-offset-for-a-given-location

4

2 回答 2

34

你太复杂了。要使用 在两个时区之间进行转换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使它们保持最新。

于 2012-12-04T08:36:01.583 回答
9

是的 php api 考虑了夏令时。大多数情况下,您可以按照 deceze 所示的方式安全地执行时间转换。问题是它并不总是可能/可行或有意义。考虑下面的例子 - 在波兰(2013 年),10 月 27 日凌晨 3 点,您的时钟向后移动一小时以切换到标准时间(偏移 UTC+01:00),在 3 月 31 日凌晨 2 点时钟向前调整 1 小时以切换到夏季时间(偏移 UTC+02:00)。现在让我们看看 Grenwich/UTC 中的“实时”是如何变化的,以及 PHP 从欧洲/华沙到 UTC 的转换是如何工作的:

Europe/Warsaw time   offset  UTC                    php2utc conversion   php offset
2013-10-27 01:00:00    +2    2013-10-26 23:00:00    2013-10-26 23:00:00  +2
2013-10-27 01:30:00    +2    2013-10-26 23:30:00    2013-10-26 23:30:00  +2
2013-10-27 02:00:00    +2    2013-10-27 00:00:00    2013-10-27 01:00:00  +1  *
2013-10-27 02:30:00    +2    2013-10-27 00:30:00    2013-10-27 01:30:00  +1  *
2013-10-27 02:59:00    +2    2013-10-27 00:59:00    2013-10-27 01:59:00  +1  *
     3am -> 2am .....................................summer time changes to standard(winter) time @3am we subtract 1h so 3am becomes 2am
2013-10-27 02:00:00    +1    2013-10-27 01:00:00    2013-10-27 01:00:00  +1
2013-10-27 02:30:00    +1    2013-10-27 01:30:00    2013-10-27 01:30:00  +1
2013-10-27 03:00:00    +1    2013-10-27 02:00:00    2013-10-27 02:00:00  +1  
2013-10-27 03:30:00    +1    2013-10-27 02:30:00    2013-10-27 02:30:00  +1  

正如您在凌晨 2 点至凌晨 3 点之间看到的那样,PHP 无法知道“哪个”小时(从调整之前/之后),因此无法可靠地转换。希望这对某人的审议有所帮助;-)

于 2013-09-25T11:44:30.710 回答