API Last.fm - Track duration

I'm using the Last.fm API and I'm stuck on something seemingly pretty simple.

One answer is duration. Which returns as:

222000

      

But how do I format (in PHP) to look like

MIN:SEC
3:42

      

+2


source to share


1 answer


It looks like the duration is milliseconds. Just divide by 1000 to get the number of seconds.



+8


source







All Articles