0
可能重複:
How to calculate the date difference between 2 dates using php如何獲得PHP中兩個日期之間的差異?
date1=2010-11-10 09:49:54; date2=2010-11-10 09:49:54;
我如何在PHP中這兩個日期之間的差異?
可能重複:
How to calculate the date difference between 2 dates using php如何獲得PHP中兩個日期之間的差異?
date1=2010-11-10 09:49:54; date2=2010-11-10 09:49:54;
我如何在PHP中這兩個日期之間的差異?
$difference = strtotime($date1) - strtotime($date2);
差異將以秒爲單位。
之前先搜索'$ date1,$ date2'是相同的,除非是拼寫錯誤 – ajreal 2010-11-10 05:36:40
嘗試在發佈問題 – ajreal 2010-11-10 05:37:12