我正在尝试使用这些变量中捕获的开始时间和结束时间。我想将这些值加在一起以获得花费在各种任务上的总时间。所以我得到了这些值,并试图做这样的事情:
//start times
$time_1 = $_POST['start_of_service_1'];
$time_2 = $_POST['start_of_service_2'];
$time_3 = $_POST['start_of_service_3'];
//end times
$etime_1 = $_POST['end_of_service_1'];
$etime_2= $_POST['end_of_service_2'];
$etime_3 = $_POST['end_of_service_3'];
//total hours
$tot_hours_1 = date('H:i',strtotime($etime_1)-strtotime($time_1);
$tot_hours_2 = date('H:i',strtotime($etime_2)-strtotime($time_2));
$tot_hours_3 = date('H:i',strtotime($etime_3)-strtotime($time_3));
$totaltime = $tot_hours_1 + $tot_hours_2 + $tot_hours_3
因此,如果时间跨度为每 5 分钟,则总计 00:05 + 00:05 + 00:05 = 00:15 分钟。
这些时间函数看起来很棘手,我遇到了可怕的麻烦和时间来克服这个障碍。
谁能给我建议如何实现这一点?