如何使用PHP计算小时和分钟的日期差异?

时间:2012-10-25 11:50:42

标签: php math date operation

我有这个代码并且他计算了日期差异并且它到目前为止一直很好但是我有问题,我想从较低的数字中减去高数字并在负数上显示值,这段代码会自动找到哪个数字更高我不想要那个。

$to_time = strtotime("2012-10-25 10:42:00");
$from_time = strtotime("2012-10-26 10:21:00");
echo round(abs($to_time - $from_time) / 60,2). " minute";

2 个答案:

答案 0 :(得分:1)

尝试

echo round(($to_time - $from_time) / 60,2). " minute";

答案 1 :(得分:0)

试试这个

$to_time = strtotime("2012-10-25 10:42:00");
$from_time = strtotime("2012-10-26 10:21:00");
echo round(($to_time - $from_time)/60,2). " minute";