Convert seconds to years, months, days, hours Monday, April 22, 2013 This useful function convert integer time as seconds to years, months, days, hours. Code: 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; } } //Using process //hrer 123456 is the int time as second $time = Sec2Time(123456); echo 'Year: '.$time["years"]. ''; echo 'Days: '.$time["days"].''; echo 'Hours: '.$time["hours"].''; echo 'Minutes: '.$time["minutes"].''; echo 'Seconds: '.$time["seconds"]; ?> Labels: PHP
Convert seconds to years, months, days, hours Monday, April 22, 2013 This useful function convert integer time as seconds to years, months, days, hours. Code: 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; } } //Using process //hrer 123456 is the int time as second $time = Sec2Time(123456); echo 'Year: '.$time["years"]. ''; echo 'Days: '.$time["days"].''; echo 'Hours: '.$time["hours"].''; echo 'Minutes: '.$time["minutes"].''; echo 'Seconds: '.$time["seconds"]; ?> Labels: PHP