Skip to content

Instantly share code, notes, and snippets.

@mvargasmoran
Created October 17, 2014 13:07
Show Gist options
  • Save mvargasmoran/e4742691a575826f23d3 to your computer and use it in GitHub Desktop.
Save mvargasmoran/e4742691a575826f23d3 to your computer and use it in GitHub Desktop.
Seconds to human readable
<?php
function secondsToTime($seconds) {
$dtF = new DateTime("@0");
$dtT = new DateTime("@$seconds");
return $dtF->diff($dtT)->format('%a days, %h hours, %i minutes and %s seconds');
}
echo secondsToTime(1640467);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment