可能重复:
Number of seconds from now() to Sunday midnight
Calculates difference between two dates in PHP
大家好,
在我的项目中,我需要计算两个日期之间的差异:
例如:
$firstDay = "2011-05-12 18:20:20";
$secondDay = "2011-05-13 18:20:20";
然后我应该 86400秒这是24小时。
同样适用于
$firstDay = "2011-05-13 11:59:20";
$secondDay = "2011-05-13 12:00:20";
它应该返回 60秒。
我在stackoverflow But they only deals
中阅读了很多问题,其中 2分钟字段的区别如 11:50:01和12:10:57
答案 0 :(得分:145)
$timeFirst = strtotime('2011-05-12 18:20:20');
$timeSecond = strtotime('2011-05-13 18:20:20');
$differenceInSeconds = $timeSecond - $timeFirst;
然后,您就可以使用秒来查找分钟,小时,天等等。