Created
October 29, 2012 15:07
-
-
Save fernanDOTdo/3974057 to your computer and use it in GitHub Desktop.
Formatar/Converter Segundos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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