12

可能重复:
如何使用 PHP 计算两个日期之间的差异?

在这里我两次提到它的日期

2008-12-13 10:42:00

2010-10-20 08:10:00

我想获得 (h:m:s) 格式的总时差

4

3 回答 3

33

如果您正在使用或能够使用 PHP 5.3.x 或更高版本,则可以使用其 DateTime 对象功能:

$date_a = new DateTime('2010-10-20 08:10:00');
$date_b = new DateTime('2008-12-13 10:42:00');

$interval = date_diff($date_a,$date_b);

echo $interval->format('%h:%i:%s');

您可以通过多种方式使用该格式,一旦您在 DateTime 对象中有日期,您就可以利用许多不同的功能,例如通过普通运算符进行比较。有关更多信息,请参阅手册:http: //us3.php.net/manual/en/datetime.diff.php

于 2012-05-22T06:23:12.737 回答
16

我在用什么:

$seconds = strtotime("2010-10-20 08:10:00") - strtotime("2008-12-13 10:42:00");

$days    = floor($seconds / 86400);
$hours   = floor(($seconds - ($days * 86400)) / 3600);
$minutes = floor(($seconds - ($days * 86400) - ($hours * 3600))/60);
$seconds = floor(($seconds - ($days * 86400) - ($hours * 3600) - ($minutes*60)));

您现在可以按照自己的方式格式化

于 2012-05-22T06:29:07.790 回答
4

您可以使用strtotime 函数将时间转换为整数并减去它们。

$time1 = strtotime("2008-12-13 10:42:00");
$time2 = strtotime("2010-10-20 08:10:00");

$diff = $time2-$time1;
// the difference in int. then you can divide by 60,60,24 and 
// so on to get the h:m:s out of it
于 2012-05-22T06:16:22.770 回答