Convert seconds to Hour:Minute:Second

php, time

Solution

You can use the `gmdate()` function:

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

Problem

I need to convert seconds to "Hour:Minute:Second". For example: "685" converted to "00:11:25" How can I achieve this?

Original source

Related problems