1

如何在 php 中获取 UTC 时间戳 .. 下面不返回 UTC 时间戳,它显示的是其他时间戳

 <?php
    date_default_timezone_set('UTC');
    echo strtotime("now");

    ?>

我认为,将默认时区设置为无效?

4

1 回答 1

1

尝试这个。

<?php

 print gmdate("Y-m-d\TH:i:s\Z"); 

?>

手动的

于 2013-09-15T03:44:08.337 回答