I need to convert seconds to Hour:Minute:Second.
For example: 685 converted to 00:11:25
How can I achieve this in PHP?
John from Washington DC
I need to convert seconds to Hour:Minute:Second.
For example: 685 converted to 00:11:25
How can I achieve this in PHP?
John from Washington DC
Comments are closed.
You can use the build in PHP function gmdate():
echo gmdate("H:i:s", 685);