$result = 0;
foreach ($arraytimeas $elem) {
$result = strtotime($result) + strtotime($elem);
}
echo $result; // выдает 55 т.е. минуты и секунды не сложить и не показывает как исправить
$arraytime = ['07:01:05', '06:21:30', '08:15:15', '07:13:08', '06:02:00', '09:21:10', '12:54:48'];
$sum = 0;
foreach($arraytime as $time)
$sum += strtotime($time) - strtotime('00:00:00');
echo sprintf('%d:', $sum / 3600).date('i:s', $sum);