i got this array
$total = array('1:00','2:20','4:00','5:10');
i try to SUM the total time with this
$sum = strtotime('00:00:00');
foreach ($total as $v){
$sum = $sum+strtotime($v);
}
echo date("H:i:s",$sum);
but the result is 19:40:40 should be 12:30