标签: php strtotime
我是唯一一个让这个错误回归的人吗?
$date_str = "2016-Mar-28 06:04:31 PM"; $timestamp = strtotime($date_str); echo date('Y-m-d H:m:s', $timestamp);' //Returns: 2016-03-28 18:03:31
注意18: 03 :31不是18: 04 :31,我的时区是正确的我打赌它会在几小时内关闭,而不是1分钟,运行PHP 5.6。 16
答案 0 :(得分:2)
$date_str = "2016-Mar-28 06:04:31 PM"; $timestamp = strtotime($date_str); echo date('Y-m-d H:i:s', $timestamp);
答案:
2016-03-28 18:04:31
问题:错误的一分钟
m = month
Ref 1 Ref 2