<?php $minutesConverter = function($from,$to,$format='dynamic') { $periods = array('year' => 525600, 'month' => 43800, 'week' => 10080, 'day' => 1440, 'hour' => 60, 'minute' => 1); $output = array(); foreach ($periods as $period_name => $period) { $num_periods = floor($from / $period); if ($num_periods > 1) { $output[] = "$num_periods {$period_name}s"; } elseif ($num_periods > 0) { $output[] = "$num_periods {$period_name}"; } $from -= $num_periods * $period; } return implode(' : ', $output); }; echo $minutesConverter(131390, 0);
You have javascript disabled. You will not be able to edit any code.