下面的代碼...PHP,日期()不返回正確的日期/時間
$date = "02-13-2012";
$start_time = "17:30";
$end_time = "20:00";
$start_timestamp = date("m-d-Y H:i",strtotime($date." ".$start_time));
$end_timestamp = date("m-d-Y H:i",strtotime($date." ".$end_time));
print($start_timestamp);
print($end_timestamp);
返回...
1969-12-31 19:30:00
1969-12-31二十時30分零零秒
沒有人有任何想法,爲什麼這不能正常工作?
試試這個$ date =「2012-02-13」; – busypeoples 2012-02-14 01:58:13
好問題:)。我在一次過去 – 2012-02-14 02:00:07