Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert seconds to Hour:Minute:Second

Tags:

php

time

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

For example: "685" converted to "00:11:25"

How can I achieve this?

like image 725
EzzDev Avatar asked Jul 03 '10 17:07

EzzDev


People also ask

How do you convert seconds to HH mm SS?

Find the number of whole hours by dividing the number of seconds by 3,600. The number to the left of the decimal point is the number of whole hours. The number to the right of the decimal point is the number of partial hours.

How do you convert seconds to HH mm SS format in Excel?

As with Excel, the first step to converting elapsed second to time is to divide the value by 86400. To format the cells for mm:ss, select Format > Number > More Formats > More date and time formats from the Menu.


1 Answers

You can use the gmdate() function:

echo gmdate("H:i:s", 685); 
like image 60
animuson Avatar answered Sep 28 '22 04:09

animuson