1

我正在做一个项目,该项目需要检查过去和现在特定时间之间的时差,并且仅在 MINUTES 中输出差异。例如,如果 Diff 为 2 小时 3 分钟。输出应为 123(即 2 小时(120 分钟)+ 3 分钟)。

我使用了 CodeIgnitertimespan()函数,但它只返回 2 小时 3 分钟。有没有办法获得所需的输出?

4

1 回答 1

0

你需要这样的东西吗?

$tomorrow  = mktime(0, 0, 0, date("m")  , date("d")+1, date("Y"));
$today = mktime(0, 0, 0, date("m"), date("d"),   date("Y"));

$minutesDiff = ($tomorrow - $today)/60;
echo $minutesDiff;
于 2013-08-09T16:30:48.913 回答