Home  >  Article  >  Backend Development  >  php convert seconds to time (year, day, hour, minute, second)

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

WBOY
WBOYOriginal
2016-07-29 09:13:472448browse

$t=1637544;

$d=Sec2Time($t);

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

//Convert seconds to time (year, day, hour , minutes, seconds)

php 将秒数转换为时间(年、天、小时、分、秒)
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 introduces PHP to convert seconds into time (years, days, hours, minutes, seconds), including the content. I hope it will be helpful to friends who are interested in PHP tutorials.

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