2

What is the best way to calculate the difference in time, when time is greater than 24 hours.

Example

$time1 = '76:00:00';
$time2 = '30:00:00';

// result should be 46:00:00
echo date('H:i:s', strtotime($time1) - strtotime($time2));

But this could not be done with this because its greater then 24 hours.

Also in a database i've stored a time like this: 33:30:00 How in php could i format it to: 33:30

Azeez Kallayi
  • 2,567
  • 1
  • 15
  • 19
Bham
  • 309
  • 5
  • 21

2 Answers2

3

Use \DateTime and \DateInterval to perform calculations:

$date1 = new \DateTime('now', new DateTimeZone('UTC'));
$date2 = new \DateTime('now', new DateTimeZone('UTC'));
$time1 = new \DateInterval('PT76H');
$time2 = new \DateInterval('PT30H');

$date1->add($time1);
$date2->add($time2);

$diff = $date1->diff($date2);
echo ($diff->days * 24 + $diff->h) . $diff->format(':%I:%S');

Explanation: It's not possible to perform calculations directly on DateIntervals, so you have to create dates as a basis for calculations. Then add two different intervals to current dates, and calculate a difference between them. diff() returns \DateInterval that contains total number of days, that you have to multiply by 24 to get hours, and hours that don't make full days.

EDIT: The timezone should be specified as UTC to avoid daylight saving time issues.

Bartosz Zasada
  • 3,762
  • 2
  • 19
  • 25
0

You can try this:

/**
 * Common method to diff between two time
 * 
 * @param string $start
 * @param string $end
 * @return string
 */
public function diffTime($start, $end)
{
    /* $start = '76:00:00'; */
    /* $end = '30:00:00'; */
    /* Get total time in Seconds */
    $totalStartTimeSec = self::getTotalSeconds($start);
    $totalEndTimeSec = self::getTotalSeconds($end);
    /* Get difference time in Seconds */
    $difference = abs($totalStartTimeSec - $totalEndTimeSec);
    $hours = floor($difference / 3600);
    $minutes = floor(($difference % 3600) / 60);
    $seconds = $difference % 60;
    $diffFormat = str_pad($hours, 2, '0', STR_PAD_LEFT). ":" . str_pad($minutes, 2, '0', STR_PAD_LEFT). ":" . str_pad($seconds, 2, '0', STR_PAD_LEFT);
    
    /* result $diffFormat is '46:00:00'; */
    return $diffFormat;
}

/**
 * Get total time in Seconds
 * 
 * @param string $time
 * @return array
 */
public function getTotalSeconds($time) {
    $timeArr = explode(':', $time);
    $allTime = [];
    if (isset($timeArr[0]) && $timeArr[0] > 24) {
        $greaterDuration = $timeArr[0];
        while ($greaterDuration > 24) {
            $greaterDuration -= 24;
            $allTime[] = strtotime('24:00:00') - strtotime('00:00');
        }
        if ($greaterDuration == 24 && ($timeArr[1] != '00' || $timeArr[2] != '00')) {
            $greaterDuration -= 24;
            $allTime[] = strtotime('24:00:00') - strtotime('00:00');
        }
        $remainingTime = str_pad($greaterDuration, 2, '0', STR_PAD_LEFT) . ':' . $timeArr[1] . ':' . $timeArr[2];
        $allTime[] = strtotime($remainingTime) - strtotime('00:00');
    } else {
        $allTime[] = strtotime($time) - strtotime('00:00');
    }
    
    return array_sum($allTime);
}

Thanks!

Mukesh Khatri
  • 13
  • 1
  • 5