Home > Article > Backend Development > How to convert seconds to time in php
php method to convert seconds to time: 1. Create a PHP sample file; 2. Convert seconds to time through the "function Sec2Time($time){...}" method.
The operating environment of this article: Windows7 system, PHP7.1 version, DELL G3 computer
How to convert seconds to time with php?
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
Convert seconds to time (year, day, hour, minute, second)
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; } }
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to convert seconds to time in php. For more information, please follow other related articles on the PHP Chinese website!