标签:intval val php fun func time() function else int
function getTime($time){
$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 "刚刚";
}
}
标签:intval val php fun func time() function else int
原文地址:https://www.cnblogs.com/ForAll-I-Care/p/13159945.html