How to convert seconds in php to duration

藏色散人
Release: 2023-03-10 17:42:01
Original
2963 people have browsed it

How to convert seconds to duration in php: 1. Use the "gmstrftime" function to convert seconds within 24 hours; 2. Use the "changeTimeType" method to convert seconds beyond 24 hours.

How to convert seconds in php to duration

The operating environment of this article: Windows 7 system, PHP 7.1 version, DELL G3 computer

How to convert php seconds to duration?

For example: PHP converts seconds (4490) into hours, minutes and seconds (34:02:02)

To convert seconds into hours, minutes and seconds, PHP provides a function gmstrftime, However, this function is limited to converting seconds within 24 hours. How should we display seconds that exceed 24 hours?

For example, 34:02:02

$seconds = 3600*34 + 122;
function changeTimeType($seconds){
    if ($seconds > 3600){
        $hours = intval($seconds/3600);
        $minutes = $seconds % 3600;
        $time = $hours.":".gmstrftime('%M:%S', $minutes);
    }else{
        $time = gmstrftime('%H:%M:%S', $seconds);
    }
    return $time;
}
echo changeTimeType($seconds);
Copy after login

Result output 34:02:02

Recommended Study: "PHP Video Tutorial"

The above is the detailed content of How to convert seconds in php to duration. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
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!