Skip to content

Instantly share code, notes, and snippets.

@fernanDOTdo
Created October 29, 2012 15:07
Show Gist options
  • Select an option

  • Save fernanDOTdo/3974057 to your computer and use it in GitHub Desktop.

Select an option

Save fernanDOTdo/3974057 to your computer and use it in GitHub Desktop.
Formatar/Converter Segundos
function duration($sec){
return ($sec > 3599) ? gmdate('H:i:s', $sec) : gmdate('i:s', $sec);
}
echo duration(5000); // 01:23:20 -> 1 hora, 23 minutos, 20 segundos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment