运行令牌生成器后-得到以下输出:
token_expiration = 2019-02-15T17:07:49Z
现在是哪个时区,以及如何将其转换为EST?
谢谢
答案 0 :(得分:2)
结尾Z表示它是UTC。要将UTC转换为EST,可以使用以下功能:
$date = new DateTime('2019-02-15T17:07:49Z', new DateTimeZone('UTC'));
$date->setTimezone(new DateTimeZone('America/New_York'));
echo $date->format('Y-m-d H:i:s');