I need to convert seconds to "Hour:Minute:Second".
For example: "685" converted to "00:11:25"
How can I achieve this?
You can use the gmdate() function:
gmdate()
echo gmdate("H:i:s", 685);
2.1m questions
2.1m answers
60 comments
57.0k users