Skip to content

Instantly share code, notes, and snippets.

@turtlix
Created May 13, 2016 00:54
Show Gist options
  • Save turtlix/6e9ce81c2a8c2669bc268cdc686d2a6c to your computer and use it in GitHub Desktop.
Save turtlix/6e9ce81c2a8c2669bc268cdc686d2a6c to your computer and use it in GitHub Desktop.
<?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