[PHP]将秒转换为时间(年月日小时)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[PHP]将秒转换为时间(年月日小时)相关的知识,希望对你有一定的参考价值。
This useful function will convert a time in seconds to a time in years, months, weeks, days, and so on.
function Sec2Time($time){ "years" => 0, "days" => 0, "hours" => 0, "minutes" => 0, "seconds" => 0, ); if($time >= 31556926){ $time = ($time%31556926); } if($time >= 86400){ $time = ($time%86400); } if($time >= 3600){ $time = ($time%3600); } if($time >= 60){ $time = ($time%60); } }else{ return (bool) FALSE; } }
以上是关于[PHP]将秒转换为时间(年月日小时)的主要内容,如果未能解决你的问题,请参考以下文章