我有两次例如启动时间为上午9点,结束时间为下午1点,我从下拉列表中得到这两次。如何在几小时内找到这两次之间的差异..
答案 0 :(得分:1)
$to_time = strtotime("09:00:00");
$from_time = strtotime("13:00:00");
echo round(abs($to_time - $from_time) / 60 / 60 ,2). " Hours";
如果您不确定可以使用
以24小时格式转换时间$time_in_24_hour_format = date("H:i", strtotime("1:00 PM"));