您现在的位置是:首页 > 教程 > dedecms教程dedecms教程

织梦dede发布时间实现XX秒前、XX分钟前的方法

雅蕊2023-09-16 00:00:12dedecms教程已有人查阅

导读在include/extend.func.php最下面添加function tranTime($time) {$rtime = date("m-d H:i

在include/extend.func.php最下面添加
function tranTime($time) {
    $rtime = date("m-d H:i",$time);
    $htime = date("H:i",$time);
    $etime = time() - $time;
    if ($etime < 1) return '刚刚';
    $interval = array (
        12 * 30 * 24 * 60 * 60  =>  ' 年 前',
        30 * 24 * 60 * 60       =>  ' 个 月 前',
        7 * 24 * 60 * 60        =>  ' 周 前',
        24 * 60 * 60            =>  ' 天 前',
        60 * 60                 =>  ' 小 时 前',
        60                      =>  ' 分 钟 前',
        1                       =>  ' 秒 前'
    );
    foreach ($interval as $secs => $str) {
        $d = $etime / $secs;
        if ($d >= 1) {
            $r = round($d);
            return $r . $str;
        }
    };
}
前台模板调用标签
首页/列表页
[field:pubdate function=tranTime(@me)/]
内容页
{dede:field.pubdate function=tranTime(@me)/}

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签