Skip to content

Instantly share code, notes, and snippets.

@alash3al
Created May 10, 2017 09:15
Show Gist options
  • Save alash3al/8d474bb3824a97b27a16257d6563d720 to your computer and use it in GitHub Desktop.
Save alash3al/8d474bb3824a97b27a16257d6563d720 to your computer and use it in GitHub Desktop.
<?php
/**
* Convert the specified minutes (int) to the specified format (hours)
*
* @author Mohammed Al Ashaal <https://alash3al.xyz>
* @version 1.0
* @return string
*/
function minutes2hours($m, $format = "%02d:%02d") {
if ( $m < 60 ) {
$hours = 0;
$minutes = $m;
} else {
$hours = (int) ($m / 60);
$minutes = (int) ($m % 60);
}
return sprintf($format, $hours, $minutes);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment