我datetime在MySQL中有专栏。
datetime
如何使用PHP 将其转换为 mm / dd / yy H:M(AM / PM)显示 ?
要将从MySQL检索的日期转换为请求的格式(mm/dd/yy H:M (AM/PM)):
mm/dd/yy H:M (AM/PM)
// $datetime is something like: 2014-01-31 13:05:59 $time = strtotime($datetimeFromMysql); $myFormatForView = date("m/d/y g:i A", $time); // $myFormatForView is something like: 01/31/14 1:05 PM
请参考PHP日期格式选项以调整格式。