Created
February 24, 2016 11:21
-
-
Save Foxy79/484b1f4b6f512b7cce5d to your computer and use it in GitHub Desktop.
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
<?php | |
function hoursDotMinutes($seconds) { | |
$h = floor($seconds/3600); | |
$seconds -= $h*3600; | |
$m = floor($seconds/60); | |
return sprintf("%02d:%02d",$h,$m); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment