欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php 把秒数转换为时长(h:i:s格式)

程序员文章站 2022-03-11 11:37:28
...
这篇文章介绍的内容是关于php 把秒数转换为时长(h:i:s格式) ,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
/** 
 *      把秒数转换为时分秒的格式 
 *      @param Int $times 时间,单位 秒 
 *      @return String 
 */  
function secToTime($times){  
        $result = '00:00:00';  
        if ($times>0) {  
                $hour = floor($times/3600);  
                $minute = floor(($times-3600 * $hour)/60);  
                $second = floor((($times-3600 * $hour) - 60 * $minute) % 60);  
                $result = $hour.':'.$minute.':'.$second;  
        }  
        return $result;  
}

以上就是php 把秒数转换为时长(h:i:s格式) 的详细内容,更多请关注其它相关文章!

相关标签: php 格式 时长