将秒转换为时:分:秒

2022-01-30 00:00:00 time php

我需要将秒转换为时:分:秒".

I need to convert seconds to "Hour:Minute:Second".

例如:685"转换为00:11:25"

For example: "685" converted to "00:11:25"

我怎样才能做到这一点?

How can I achieve this?

推荐答案

你可以使用 gmdate() 功能:

You can use the gmdate() function:

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

相关文章