如何使用DateTime类在PHP之间的时区之间进行转换? [英] How to convert between time zones in PHP using the DateTime class?

查看:135
本文介绍了如何使用DateTime类在PHP之间的时区之间进行转换?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将当前时间与UTC和UTC之间的时间转换为当前时区。

I am trying to convert time between current time to UTC and UTC to current time zone.

这是我所做的:

$schedule_date = new DateTime($triggerOn, new DateTimeZone('UTC') );
$triggerOn =  $schedule_date->format('Y-m-d H:i:s');

echo $triggerOn;

输出值不会更改唯一的格式更改。

The output value does not change the only thing that changes in format.

根据 America / Los_Angeles 时区

这是我之前和之后字符串的样子:

This is how my string looks like before and after:

BEFORE    04/01/2013 03:08 PM
AFTER     2013-04-01 15:08:00

所以这里的问题是DateTime不会转换为UTC。

So the issue here is that DateTime does not convert to UTC.

推荐答案

您要查找的是:

$triggerOn = '04/01/2013 03:08 PM';
$user_tz = 'America/Los_Angeles';

echo $triggerOn; // echoes 04/01/2013 03:08 PM

$schedule_date = new DateTime($triggerOn, new DateTimeZone($user_tz) );
$schedule_date->setTimeZone(new DateTimeZone('UTC'));
$triggerOn =  $schedule_date->format('Y-m-d H:i:s');

echo $triggerOn; // echoes 2013-04-01 22:08:00

这篇关于如何使用DateTime类在PHP之间的时区之间进行转换?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆