time - PHP - Convert seconds to Hour:Minute:Second -


i need convert seconds hour:minute:second.

for example: 685 converted 00:11:25

how can achieve this?

you can use gmdate() function:

echo gmdate("h:i:s", 685); 

Comments

Popular posts from this blog

php - trouble displaying mysqli database results in correct order -

depending on nth recurrence of job in control M -

sql server - Cannot query correctly (MSSQL - PHP - JSON) -