php – 将GMT#格式的datetime转换为GMT

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

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

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

最佳答案 试试这个:

$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');
点赞