How to convert between time zones in PHP using the DateTime class?(如何使用 DateTime 类在 PHP 中的时区之间进行转换?)
本文介绍了如何使用 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.
字符串 $triggerOn
是根据 America/Los_Angeles
时区生成的
the string $triggerOn
was generated based on America/Los_Angeles
timezone
这是我的字符串前后的样子:
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 中的时区之间进行转换?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何使用 DateTime 类在 PHP 中的时区之间进行转换?


猜你喜欢
- 带有通配符的 Laravel 验证器 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- Laravel 仓库 2022-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01