当我从数据库中提取日期时,它会像这样回来:
2009-10-14T19:00:00
我想以两种不同的方式格式化它......
第一个:F d,Y 第二个h:m(12小时格式)
我尝试的一切都会在1969年12月回归......帮助?!我感到很困惑......
答案 0 :(得分:55)
通常代码只是:
echo date('F d, Y h:mA', strtotime('2009-10-14 19:00:00'));
请注意,如果strtotime()
无法确定日期,则会将时间返回为1/1/1970 00:00:00 GMT。
答案 1 :(得分:6)
如果要在数据库中格式化它(假设MySQL):
SELECT DATE_FORMAT(t.column, '%M %D, %Y'), --October 14, 2009
DATE_FORMAT(t.column, '%h:%i %p') --hh:mm am/pm
FROM TABLE t
...或者如果你想在PHP中进行转换:
echo date('F d, Y h:mA', strtotime('2009-10-14 19:00:00'));
参考:
答案 2 :(得分:5)
简单的日期显示功能:
echo date('m-d-Y H:i:s',strtotime($date_variable));
答案 3 :(得分:2)
最重要的是清除
$res_tbl ='select create_date from tbl_comments';
while($table =mysql_fetch_array($res_tbl))
{
echo date('F d, Y h:mA', strtotime($table['create_date']));
echo "<br>";
}
输出:
January 10, 2009 21:12
March 21, 2001 12:04
答案 4 :(得分:0)
您可能需要查看strtotime