I needed a function to print a preety time span duration. Nothing special, just simple as that. It turned out to be usefull for many things, like machine (or any other) uptime and so on.
Return value is something simmilar to
6 days 3 hours 34 minutes 13 seconds
So here goes, the duration() function.
It's published here, so I don't have to waste time and reinvent this everytime.
function duration($start,$end=null) {
$end = is_null($end) ? time() : $end;
$seconds = $end - $start;
$days = floor($seconds/60/60/24);
$hours = $seconds/60/60%24;
$mins = $seconds/60%60;
$secs = $seconds%60;
$duration='';
if($days>0) $duration .= "$days days ";
if($hours>0) $duration .= "$hours hours ";
if($mins>0) $duration .= "$mins minutes ";
if($secs>0) $duration .= "$secs seconds ";
$duration = trim($duration);
if($duration==null) $duration = '0 seconds';
return $duration;
}
3 comments:
very good
Nice, But!
This doesn't work for me without modification.
The PHP manual states "The default value [for a function argument] must be a constant expression, not (for example) a variable, a class member or a function call."
So it seems that $end=time() is not allowed in the declaration. Did this ever work for you?
Try altering the begging of the code as such:
function duration($start,$end=null) {
if ( $end == null) { $end = time(); }
Hey, nice catch.
I think it worked fine in PHP 4. But then I changed the function, before migrating to PHP 5.
I'll fix the code. Thanks.
Post a Comment