Home  >  Article  >  Backend Development  >  PHP code to convert seconds into time (year, month, day, hour...)

PHP code to convert seconds into time (year, month, day, hour...)

WBOY
WBOYOriginal
2016-07-25 08:59:561417browse
I wrote a function to convert events represented by seconds into time formats such as year, month, day, hour, etc. Friends in need can refer to it.

The code is as follows:

<?php
/**
 * 秒数转为年月日小时等时间格式 
 * by http://bbs.it-home.org
*/
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; 
  }else{ 
    return (bool) FALSE; 
  } 
}
?>


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