Skip to content

Instantly share code, notes, and snippets.

@Foxy79
Created February 24, 2016 11:21
Show Gist options
  • Save Foxy79/484b1f4b6f512b7cce5d to your computer and use it in GitHub Desktop.
Save Foxy79/484b1f4b6f512b7cce5d to your computer and use it in GitHub Desktop.
<?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