Convert seconds to Hour:Minute:Second

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

    This is a pretty way to do that:

    function time_converter($sec_time, $format='h:m:s'){
          $hour = intval($sec_time / 3600) >= 10 ? intval($sec_time / 3600) : '0'.intval($sec_time / 3600);
          $minute = intval(($sec_time % 3600) / 60) >= 10 ? intval(($sec_time % 3600) / 60) : '0'.intval(($sec_time % 3600) / 60);
          $sec = intval(($sec_time % 3600) % 60)  >= 10 ? intval(($sec_time % 3600) % 60) : '0'.intval(($sec_time % 3600) % 60);
    
          $format = str_replace('h', $hour, $format);
          $format = str_replace('m', $minute, $format);
          $format = str_replace('s', $sec, $format);
    
          return $format;
        }
    

提交回复
热议问题