Convert seconds to Hour:Minute:Second

前端 未结 27 2688
说谎
说谎 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:25

    Here is a one liner that handles negative seconds and more than 1 day worth of seconds.

    sprintf("%s:%'02s:%'02s\n", intval($seconds/60/60), abs(intval(($seconds%3600) / 60)), abs($seconds%60));
    

    For Example:

    $seconds= -24*60*60 - 2*60*60 - 3*60 - 4; // minus 1 day 2 hours 3 minutes 4 seconds
    echo sprintf("%s:%'02s:%'02s\n", intval($seconds/60/60), abs(intval(($seconds%3600) / 60)), abs($seconds%60));
    

    outputs: -26:03:04

提交回复
热议问题