1
$created_dt = created_dt->created_dt // string(19) "2013-06-06 15:50:08"
我試圖確定當前的日期/時間是從這個時間大於24小時:
$current_time = date('Y-m-d H:i:s', now());
if($current_time > $created_dt + 24 hours){
//do some things
}
這是如何實現的?你能夠使用<,=,>運算符與日期字符串?
我曾嘗試:
$created_dt = mktime(date('H')+1); //Seems to add 6 hours to current time
$created_dt = date('Y-m-d H:i:s', now('H'+1)); // Gives me the time and date for now
這是完美的工作。謝謝! – Kisaragi
歡迎你! – Fabio