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);
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
Post a Comment