本文操作环境:windows7系统、PHP7.1版,DELL G3电脑php怎么将秒数转时间?php 将秒数转换为时间(年、天、小时、分、秒)$t=1637544; $d=Sec2Time($t);$d为 0年18天 22小时52分24秒
本文操作环境: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;
}
}
--结束END--
本文标题: php怎么将秒数转时间
本文链接: https://lsjlt.com/news/156.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0