标签: php date time
我想找出当前时间和特定时间之间的分钟时差。 例如,当前时间是'02:00:00'am,具体时间是'22:00:00'pm。 从下面的代码我得到一些负数,我应该得到240分钟的时差。
$difference=strtotime('02:00:00') - strtotime('22:00:00'); echo $difference/60;
我得到-1200