私はできる限りのことを試しましたが、解決策を思いつくことができませんでした....時間の$intervalをループするにはどうすればよいですか....
これが私の CodeIgniter コントローラの関数です:
public function calculate_time_lap() {
$formate = "%h:%i";
$in = $this->input->post('checkin');
foreach ($in as $checkin) {
$datetime1 = date_create($checkin);
}
$out = $this->input->post('checkout');
foreach ($out as $checkout) {
$datetime2 = date_create($checkout);
}
$interval = date_diff($datetime2, $datetime1);
$times = $interval->format($formate);
echo $this->add_time($times);
//add_time is function to add array value of time
}