可能重复:
获取 HH:MM 格式 php 的时间差异
我的时间格式是 d/m/Y - h:ia
示例输出为 21/10/2012 - 03:49pm
我正在使用此代码来计算 $from 和 $to 之间的差异
$to = strtotime("21/10/2012 - 10:30pm");
$from = strtotime("22/10/2012 - 8:30am");
$stat = date("H\h:i\m", abs($to - $from));
但我总是得到不正确的值
对于上面的示例,我得到了 16h:00m 的输出,但它应该是 10h:00m
有没有更有效的方法来做到这一点?