我想將字符串轉換爲日期時間。這裏有很多線索,但似乎並不奏效。沒有返回。我有幾件事。我究竟做錯了什麼?這是我的目標字符串datetime返回什麼
$obj[0]['time']
這將返回:
20/04/2014 10:13
,我想轉換成一個日期時間,因爲我需要它來排序。
我試過以下我發現在另一個線程上。它爲什麼不把它作爲日期時間返回?我也嘗試過date_create_from_format,但無法讓它工作。
$date = strtotime($obj[0]['time']);
echo $date;
你對'strtotime'的期待是什麼? –
你想[新的DateTime($ obj [0] ['time'])'](http://www.php.net/manual/en/class.datetime.php)? – Sam
'var_dump($ date)'。如果它表示布爾值爲false,則strtotime無法確定字符串的格式。 –