i'll just throw my code in here while we're at it...

$seconds = 3600*5 + (60 * 10) + 45;

$hours = floor( $seconds / 3600 );
$mins = floor( ($seconds % 3600) / 60 );
$seconds = floor( ($seconds % 60) );

echo "Hours: $hours\nMins: $mins\nSeconds: $seconds\n";

-js


John W. Holmes wrote:
>>You can do something like this:
>><?php
>> $seconds = 265;
>> $time = date('i s',$seconds);
>> $minSecs = explode(' ',$time);
>> echo "{$minSecs[0]} minutes and {$minSecs[1]} seconds<br>\n";
>>?>
> 
> 
> That doesn't work for anything over 3599 seconds, though... 
> 
> ---John Holmes...
> 
> 
> 




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to