我有一个简单的日期时间格式10/20 4:30PM
。我希望它以
10/24 1:30PM -007
. 我是说date('Y-m-d H:i:sT', $time_recieved)
假设T
是针对时区的。但它仍然没有给出时区。可能是什么原因?我还缺少其他格式吗?
问问题
3855 次
2 回答
5
你可以看看PHP的官方手册:date();
http://www.php.net/manual/en/function.date.php
我对此进行了测试,并在我的服务器上使用了:
$time = time();
echo date('Y-m-d H:i:s T', $time);
它完美地显示了时区。检查 $time_received,它可能是一个错误的数字,尝试使用本地时间和 time´() 函数以确保它没问题。
祝你好运
于 2012-10-25T17:20:13.383 回答
4
于 2012-10-25T17:13:45.483 回答