PHP如何生成GMT时间,类似这样的日期(欧美人最常用的):
<code>Mon,12 May 2001 00:20:00 GMT </code>
PHP如何生成GMT时间,类似这样的日期(欧美人最常用的):
<code>Mon,12 May 2001 00:20:00 GMT </code>
<code><?php gmdate('D, d M Y H:i:s T'); </code></code>
<code>$time = new DateTime("2001-05-12 00:20:00", new DateTimeZone("GMT")); echo $time->format("D, d M Y H:i:s T"); </code>
http://3v4l.org/07jJ8 其实我一直在好奇题主设置的时区的,因为2010年5月12日中国时间是星期六诶...