前端之家收集整理的这篇文章主要介绍了
php计算时间函数:几分钟前、几小时前、几天前,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
经测试后的
代码如下:
<?PHP
function time_tran($the_time) {
$now_time = date("Y-m-d H:i:s",time());
//echo $now_time;
$now_time = strtotime($now_time);
$show_time = strtotime($the_time);
$dur = $now_time - $show_time;
if ($dur < 0) {
return $the_time;
} else {
if ($dur < 60) {
return $dur . '秒前';
} else {
if ($dur < 3600) {
return floor($dur / 60) . '分钟前';
} else {
if ($dur < 86400) {
return floor($dur / 3600) . '小时前';
} else {
if ($dur < 259200) {//3天内
return floor($dur / 86400) . '天前';
} else {
return $the_time;
}
}
}
}
}
}
?>
原文链接:https://www.f2er.com/php/529255.html