可能重复:
How to calculate the difference between two dates using PHP?
大家好,我需要计算两个日期之间的确切总天数。使用PHP DateTime对象的diff()
方法很容易约会。但是我无法访问PHP 5.3
那么计算两个日期的总天数的最佳方法是什么?
$date1 = new DateTime('2011-01-01');
$date2 = new DateTime('2011-04-23');
$totalDaysBetween = ???
它也应该能够处理闰年。
有什么想法吗?