Convert seconds to Hour:Minute:Second

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

    A simple way to use DateTime for this is:

        $time = 60; //sec.
        $now = time();
        $rep = new DateTime('@'.$now);
        $diff = new DateTime('@'.($now+$time));
        $return = $diff->diff($rep)->format($format);
    
        //output:  01:04:65
    

    It's a simple solution wich gives you the ability to use the format Method of DateTime.

提交回复
热议问题