Skip to content

Instantly share code, notes, and snippets.

@khoand0000
Created September 11, 2014 15:19
Show Gist options
  • Save khoand0000/1b21f720970eca69a9ad to your computer and use it in GitHub Desktop.
Save khoand0000/1b21f720970eca69a9ad to your computer and use it in GitHub Desktop.
<?php
function duration($len){
$hr = floor($len / 60 / 60);
$min = floor($len / 60);
$sec = floor($len % 60);
return array('hr' => $hr, 'min' => $min,'sec' => $sec);
}
$dur = 28853.45;
$totals = duration($dur);
echo $totals['hr'].' hours, '.$totals['min'].' minutes and '.$totals['sec'].' seconds.';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment