This is what's known in the trade as "creeping functionallity" when the client keeps moving the goalposts
$t[0] = '10:45';
$t[1] = '15:16';
$total=0;
foreach ($t as time) {
list ($m,$s) = explode(':', $time);
$total += $m * 60 + $s;
}
echo "Total is " . floor($total/60)." mins and ". $total%60." secs";
If you have hours:mins:secs, work it out from here.