如何使用PHP计算天数的时差

时间:2016-02-12 07:00:17

标签: php

我需要一个帮助。我正在使用PHP计算一些时间差异。我正在解释下面的代码。

$daypass = "2016-02-11 10:17:36";
$today = time();
$passday= strtotime($daypass);
$hr=round(abs($today-$passday)/60/60);
echo $hr;

此处总差异即将到来,但如果小时数超过24小时将显示1 day和48小时2 days,依此类推。请帮助我。

0 个答案:

没有答案