I want to add and take an average of a few hours.
$cadena = '00:09:00,00:09:00,00:09:00,00:09:00,00:09:00';
$arr = explode(",",$cadena);
$total = strtotime('00:00:00');
for($i = 0; $i<count($arr);$i++)
{
$total = $total + strtotime($arr[...
asked by
14.02.2017 / 01:31