vote up 0 vote down star

Hi,

I'm trying to pad a time (playtime of an MP3) using sprintf() in PHP.

sprintf("%02d:2d:2d", $time);

The function that returns the time gets, for example, '1:56' if the MP3 is 1 minute 56 seconds long, and that call brings back "01:56:00" (whereas it needs to be 00:01:56). How can I make this work? How can I tell sprintf to pad on the left?

Or is there a better way to go about this? A more appropriate function maybe?

Thanks

flag

3 Answers

vote up 2 vote down check

I think you'll need to calculate each element separately, so how about:

sprintf("%02d:%02d:%02d", floor($time/3600), floor($time/60)%60, $time%60);
link|flag
Thanks, mine ended up a little different, but you put me on the right track. – Delameko Jul 24 at 17:29
vote up 1 vote down

You can use the date-function.

Something like this should work, if $time is in unix timestamp format:

print(date("H:i:s", $time));
link|flag
vote up 0 vote down

you should use strftime($format,$timestamp) ... probably as this:

strftime("%H:%M:%S",$time)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.