Convert seconds to Hour:Minute:Second

前端 未结 27 2689
说谎
说谎 2020-11-22 07:56

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

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

How can I achieve this?

27条回答
  •  半阙折子戏
    2020-11-22 08:31

    If you want to create a audio/video duration string like YouTube, etc. you can do:

    ($seconds >= 60) ? ltrim(gmdate("H:i:s", $seconds), ":0") : gmdate("0:s", $seconds)

    Will return strings like:

    55.55 => '0:55'
    100   => '1:40'
    

    Probably won't work well for time >= 24 hours.

提交回复
热议问题