Log 2285
07/12/2023 2023-12-07 17:20$startTime = #תאריך ושעת הפניה#;
$endTime = #זמן הטיפול בפניה#;
// Convert start time and end time to timestamps
$startTimestamp = strtotime($startTime);
$endTimestamp = strtotime($endTime);
// Calculate the difference in seconds
$differenceInSeconds = $endTimestamp – $startTimestamp;
// Convert the difference to HH:MM:SS format
$hours = floor($differenceInSeconds / 3600);
$minutes = floor(($differenceInSeconds % 3600) / 60);
$seconds = $differenceInSeconds % 60;
// Format the result as HH:MM:SS
$result = sprintf(“%02d:%02d:%02d”, $hours, $minutes, $seconds);
return $result;