"+7", "datetime" => "2017--6ren">
gpt4 book ai didi

php - 将 GMT+# 格式的日期时间转换为 GMT

转载 作者:可可西里 更新时间:2023-10-31 23:36:35 30 4
gpt4 key购买 nike

我有这样的输入格式,我需要将其转换为 GMT 格式:

$input = array(
"gmt" => "+7",
"datetime" => "2017-10-10 12:10:12"
);

输入数据包含 gmt 数组索引,显示哪种 gmt 格式,datetime 索引显示“Y-m-d h:i:s”中需要从 GMT+7 转换为 GMT 的日期。

最佳答案

试试这个:

$input = array(
"gmt" => "+7",
"datetime" => "2017-10-10 12:10:12"
);

$ny = new DateTimeZone("GMT+7");
$gmt = new DateTimeZone("GMT");
$date = new DateTime( $input["datetime"], $ny );
$date->setTimezone( $gmt );

echo $date->format('Y-m-d H:i:s');

关于php - 将 GMT+# 格式的日期时间转换为 GMT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47049915/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com