码迷,mamicode.com
首页 > 其他好文 > 详细

论坛时间的处理

时间:2014-05-26 11:01:40      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   blog   code   java   

bubuko.com,布布扣
function group_date_format($time){
    $time = strtotime($time);
    $currentDay = date(‘j‘,time());
    $postDay = date(‘j‘,$time);
    if($currentDay == $postDay){
        $hours = floor((time()-$time)/(60*60));
        if($hours == 0){
            $minutes = floor((time()-$time)/60);
            if($minutes<5){
                return ‘刚刚‘;
            }else{
                return $minutes.‘分钟前‘;
            }
        }else if($hours<5){
            return $hours.‘小时前‘;
        }else{
            return ‘今天‘.date(‘H:i‘,$time);
        }
    }else if($currentDay-$postDay == 1){
        return ‘昨天‘.date(‘H:i‘,$time);
    }else if($currentDay-$postDay == 2){
        return ‘前天‘.date(‘H:i‘,$time);
    }else{
        return date(‘m-d‘,$time);
    }
    
}
bubuko.com,布布扣

 

论坛时间的处理,布布扣,bubuko.com

论坛时间的处理

标签:style   c   class   blog   code   java   

原文地址:http://www.cnblogs.com/tianlai0910/p/3747165.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!