我有問題,我使用的PHP腳本,也有一些是錯誤的,當我添加日期到我的數據庫......PHP日期重新安排到MySQL我需要使用爆炸?
我怎樣才能修復/重新安排這一日期
date("Oct 18, 2012 05:06:42");
我數據庫只接受2012-10-19 05:06:42
,但我接受不同形式,這是Oct 18, 2012 05:06:42
這裏是我的示例代碼
$cocod = date('Oct 18, 2012 05:06:42');//'Oct 18, 2012 2012-10-18';
$get = strtotime(date("Y-m-d H:m:s", strtotime($cocod)) . " +30 day");
$setex = date('Y-m-d H:m:s', $get);
echo $setex;
謝謝...
+1爲OOP-ness :)略微矯枉過正,但教育 – CodeAngry