我有两个 24 小时格式的日期
$fulldate_hour_start = "2013-11-11 18:16:00 ";
$fulldate_hour_end = "2013-11-11 23:30:00 ";
我用这个减去了它们
$Hours = number_format((((strtotime($fulldate_hour_end) - strtotime($fulldate_hour_start)) / 60) / 60),2);
结果是 5 小时 23 分钟。应该是 5 小时 14 分钟。我的错误是什么?