php將秒數轉時間的方法:1、建立一個PHP範例檔案;2、透過「function Sec2Time($time){...}」方法將秒數轉換為時間即可。
本文操作環境:Windows7系統、PHP7.1版,DELL G3電腦
php怎麼將秒數轉換時間?
php 將秒數轉換為時間(年、天、小時、分、秒)
$t=1637544; $d=Sec2Time($t);
$d為 0年18天22小時52分24秒
將秒數轉換為時間(年、天、小時、分、秒)
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; } }
推薦學習:《PHP影片教學》
以上是php怎麼將秒數轉時間的詳細內容。更多資訊請關注PHP中文網其他相關文章!