How to convert seconds into time in php

藏色散人
Release: 2023-03-07 20:58:02
Original
3915 people have browsed it

How to convert seconds into time in php: first define a number of seconds through the "$t=1637544;" method; then convert the number of seconds into time through the "Sec2Time($t);" method; finally Just output the conversion result through echo.

How to convert seconds into time in php

Recommended: "PHP Video Tutorial"

  • This method is suitable for all brands of computers .

php Convert seconds to time (year, day, hour, minute, second)

$t=1637544;

$d=Sec2Time($t);

$d is 0 years, 18 days, 22 hours, 52 minutes and 24 seconds

function Sec2Time($time){
    if(is_numeric($time)){
    $value = array(
      "years" => 0, "days" => 0, "hours" => 0,
      "minutes" => 0, "seconds" => 0,
    );
    if($time >= 31556926){
      $value["years"] = floor($time/31556926);
      $time = ($time%31556926);
    }
    if($time >= 86400){
      $value["days"] = floor($time/86400);
      $time = ($time%86400);
    }
    if($time >= 3600){
      $value["hours"] = floor($time/3600);
      $time = ($time%3600);
    }
    if($time >= 60){
      $value["minutes"] = floor($time/60);
      $time = ($time%60);
    }
    $value["seconds"] = floor($time);
    //return (array) $value;
    $t=$value["years"] ."年". $value["days"] ."天"." ". $value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
    Return $t;
    
     }else{
    return (bool) FALSE;
    }
 }
Copy after login

The above is the detailed content of How to convert seconds into time in php. 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