mvargasmoran
10/17/2014 - 1:07 PM

Seconds to human readable

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);