如何使用php查找两个时间戳之间的剩余小时?

时间:2019-05-15 07:00:21

标签: php

$firstdate=strtotime('Y-m-d H:i:s'); 
$secondate=strtotime('2019-05-16 08:00:00'); 
echo round(abs($firstdate-$secondate)/60/60);

输出43256

我正在尝试计算上述两个时间戳之间的扩孔时间,预计结果为19小时

0 个答案:

没有答案