我对如何显示TIMESTAMP感到困惑,例如" 2015年3月1日上午02:58"来自" 2015-03-01 02:58:00" PHP中的格式
谢谢
答案 0 :(得分:1)
你应该尝试这样的事情,使用date()函数:
date('d M Y h:i A', strtotime('2015-03-01 02:58:00'));
答案 1 :(得分:1)
echo date('d M Y h:i A', strtotime('2015-03-01 02:58:00'));
http://php.net/manual/en/function.date.php
看看所有可能性