Created
May 13, 2016 00:54
-
-
Save turtlix/6e9ce81c2a8c2669bc268cdc686d2a6c 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 convertToHoursMins($time, $format = '%02d:%02d') { | |
if ($time < 1) { | |
return; | |
} | |
$hours = floor($time / 60); | |
$minutes = ($time % 60); | |
return sprintf($format, $hours, $minutes); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment