1

Possible Duplicate:
seconds to minutes and days to weeks

I wonder how I can convert this value to minutes and seconds: 292.96. The value is from this API from Spotify.

Thanks in advance!

Community
  • 1
  • 1
Airikr
  • 5,802
  • 12
  • 53
  • 104

2 Answers2

7

Yes, the value is in seconds, so very simple;

int minutes = val / 60;
int seconds = val % 60;
Joachim Isaksson
  • 170,943
  • 22
  • 265
  • 283
2
$time = 292.96;
$minutes = floor( $time / 60);
$seconds = $time - ($minutes * 60); // Can add floor() or do mod (%) to round
echo $minutes . ' ' . $seconds; // 4 minutes 52.96 seconds
nickb
  • 58,150
  • 12
  • 100
  • 138
  • 1
    Many thanks for your solutions! It worked :D I'll mark your post as correct as soon as I can. – Airikr Mar 13 '12 at 22:00