<?php function getDiffInMinutes($startTime, $endTime) { $diff = $startTime->diff($endTime); return round(1440 * $diff->d + 60 * $diff->h + $diff->i + 1/60 * $diff->s); } function getMinutesPerDay($startTime, $endTime) { $output = []; $startDate = $startTime->setTime(0, 0, 0); $endDate = $endTime->setTime(23, 59, 59); $oneDay = new DateInterval('P1D'); $period = new DatePeriod($startDate, $oneDay, $endDate); foreach ($period as $date) { $start = max($startTime, $date); $end = min($endTime, $date->add($oneDay)); $output[$date->format('Y-m-d')] = getDiffInMinutes($start, $end); } return $output; } $startTime = new DateTimeImmutable("2023-08-05 14:45:05"); $endTime = new DateTimeImmutable("2023-08-09 13:00:14"); print_r(getMinutesPerDay($startTime, $endTime));
You have javascript disabled. You will not be able to edit any code.