I have an android application that call services to upload image to server. I need to convert the time in seconds that i uploaded to the php side into Hour:Minute:Second
format. Since I ma totally new to php, I need some help to achieve that. Any help would be appreciated. Thanks
Asked
Active
Viewed 140 times
1

Alex Chengalan
- 8,211
- 4
- 42
- 56
2 Answers
3
its simple..
use gmdate("H :i :s",$time );

Riyaz
- 139
- 11
-
@AlexChengalan: You could've got the [same answer](http://stackoverflow.com/questions/3172332/convert-seconds-to-hourminutesecond) with a little bit of searching. – Amal Murali Mar 13 '14 at 12:32
-
Question marked as duplicate and answer is also duplicate http://stackoverflow.com/questions/3172332/convert-seconds-to-hourminutesecond – sanoj lawrence Jan 01 '15 at 06:47
0
$time = 654654; //time in seconds.
$hours = intval($time / 3600);
$minutes = intval(($time - 3600 * $hours)/60);
$seconds = $time % 60;

Loïc
- 11,804
- 1
- 31
- 49