Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to convert seconds to Hour:Minute:Second.

For example: 685 converted to 00:11:25

How can I achieve this?

share|improve this question

5 Answers

up vote 95 down vote accepted

You can use the gmdate() function:

echo gmdate("H:i:s", 685);
share|improve this answer
3  
damn you beat me to it, so you get cookies :) – Prix Jul 3 '10 at 18:06
29  
Better make sure the number of seconds is below 86,400 though. – salathe Jul 3 '10 at 19:15
1  
It only works if the number of seconds is less than a day. – PachinSV Jan 2 at 20:47
1  
@PachinSV: That was already stated in the previous comment (the +19 one). – animuson Jan 2 at 20:54
A little trick I just used was this: $recording_length = explode(":", gmdate("H:i:s", $recording_length)) - Creates an array where element 0 is the hour, 1=minute & 2=sec. – Lee Loftiss Jan 20 at 6:24

here you go

function format_time($t,$f=':') // t = seconds, f = separator 
{
  return sprintf("%02d%s%02d%s%02d", floor($t/3600), $f, ($t/60)%60, $f, $t%60);
}

echo format_time(685); // 00:11:25
share|improve this answer

One hour is 3600sec, one minute is 60sec so why not:

<?php

$init = 685;
$hours = floor($init / 3600);
$minutes = floor(($init / 60) % 60);
$seconds = $init % 60;

echo "$hours:$minutes:$seconds";

?>

which produces:

$ php file.php
0:11:25

(I've not tested this much, so there might be errors with floor or so)

share|improve this answer
But he wants two zeros... "00:11:25" not "0:11:25" – animuson Jul 3 '10 at 18:23
6  
printf("%02d:%02d:%02d", $hours, $minutes, $seconds); – Amber Jul 3 '10 at 18:26
Nice answer, my vote + – imdadhusen Apr 4 at 6:32

Try this:

date("H:i:s",-57600 + 685);

Taken from
http://bytes.com/topic/php/answers/3917-seconds-converted-hh-mm-ss

share|improve this answer
Interesting, but how this works? – Nirmal Feb 1 '12 at 17:24
Not entirely sure, but I'm pretty sure it's setting the time to 0 and then anything on top of that would simply be the correct answer – Kerry Feb 3 '12 at 0:35
This puts leading 0's in front of the minutes, which you can't adjust with date() - ca.php.net/manual/en/function.date.php – barfoon Jun 24 '12 at 3:41
@barfoon -- true, but I believe this is what M.Ezz was asking for, and it is a standard used in time. This looks strange from my experience "3:7:5" instead of "03:07:05", or even "3:7", looks more like a ratio to me. – Kerry Jun 25 '12 at 17:08

$hms=gmdate("H:i:s",12720); //You will get the answer 03:32:00

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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