我有10/20 4:30PM
格式的简单日期时间。我希望它以格式显示
10/24 1:30PM -007
。我说date('Y-m-d H:i:sT', $time_recieved)
假设T
是时区。但它还没有给出时区。可能是什么原因?我还缺少其他任何格式吗?
答案 0 :(得分:5)
答案 1 :(得分:3)
您可以查看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'()函数的本地时间来确保它没问题。
祝你好运