Heim >php教程 >php手册 >PHP实现类似Sina微博发布时间

PHP实现类似Sina微博发布时间

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-06 20:11:08858Durchsuche

public static function timeFormatter($time) { $dt_now=date('Y-m-d H:i:s',time()); $days = DateUtil::interVal("d",$time,$dt_now); $hours = DateUtil::interVal("h",$time,$dt_now); $minutes = DateUtil::interVal("n",$time,$dt_now); $seconds = D

 public static function timeFormatter($time)
    {
        $dt_now=date('Y-m-d H:i:s',time());
        $days = DateUtil::interVal("d",$time,$dt_now);
        $hours = DateUtil::interVal("h",$time,$dt_now);
        $minutes = DateUtil::interVal("n",$time,$dt_now);
        $seconds = DateUtil::interVal("s",$time,$dt_now);
        if ($days == 0 && $hours == 0 && $minutes == 0) {
            return $seconds . "秒前";
        } else if ($days == 0 && $hours == 0) {
            return $minutes . "分钟前";
        } else if ($days == 0) {
            return "今天 " . date("H:i", strtotime($time));
        } else {
            return date("m月d日 H:i", time());
        }
    }
    public static function interVal($interval = "d", $date1, $date2)
    {
        $timedifference = strtotime($date2) - strtotime($date1);
        $days = bcdiv($timedifference, 86400);
        if ($interval == 'd') {
            return $days;
        }
        $temp1 = $timedifference % (86400);
        $hours = bcdiv($temp1, 3600);
        if ($interval == 'h') {
            return $hours;
        }
        $temp2 = $temp1 % (3600);
        $minutes = bcdiv($temp2, 60);
        if ($interval == 'n') {
            return $minutes;
        }
        $seconds = $temp2 % 60;
        if ($interval == 's') {
            return $seconds;
        }
    }
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn