Home > Web Front-end > JS Tutorial > body text

PHP time function PHP converts seconds to duration (h:i:s format)

PHP中文网
Release: 2017-09-01 16:37:26
Original
1616 people have browsed it

The specific code is as follows

/** 
 *      把秒数转换为时分秒的格式 
 *      @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;  
}
Copy after login


The above is the detailed content of PHP time function PHP converts seconds to duration (h:i:s format). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!