Home  >  Article  >  Backend Development  >  How to convert seconds into time in php

How to convert seconds into time in php

藏色散人
藏色散人Original
2020-11-26 09:50:073917browse

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;
    }
 }

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!

Statement:
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