牛骨文教育服务平台(让学习变的简单)
博文笔记

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

创建时间:2015-12-03 投稿人: 浏览次数:4464
/**
 *      把秒数转换为时分秒的格式
 *      @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;
}



转载自:http://www.hblpf.com/?post=106

声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。