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
  • 6,258
  • 15
  • 59
  • 110

2 Answers2

7

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

int minutes = val / 60;
int seconds = val % 60;
Joachim Isaksson
  • 176,943
  • 25
  • 281
  • 294
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
  • 59,313
  • 13
  • 108
  • 143
  • 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