php 小时前 分钟前
2021-02-03 08:14
标签:intval val php fun func time() function else int function getTime($time){ php 小时前 分钟前 标签:intval val php fun func time() function else int 原文地址:https://www.cnblogs.com/ForAll-I-Care/p/13159945.html
$now = time();
$prc =$now - $time;
if ($prc > 86400){
return date(‘Y-m-d h:s‘,$time);
}elseif ($prc > 3600){
return intval(date(‘h‘,$prc))."小时前";
}elseif ($prc > 60){
return intval(date(‘i‘,$prc))."分钟前";
}else{
return "刚刚";
}
}