织梦园模板网提供云优cms模板,pbootcms模板,Wordpress主题模板等各类企业新闻资讯网站模板下载服务。织梦园网站模板交流群
用户名:
密码:
注册
注册后享受折扣价

织梦dede发布时间格式实现XX秒前、XX分钟前的修改办法

织梦园模板 / 2018-09-08 / 收藏
在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;
        }
    };
}

前台模板调用标签
 
首页/列表页
 
1 [field:pubdate function=tranTime(@me)/]
 
内容页
 
1 {dede:field.pubdate function=tranTime(@me)/}

相关织梦技巧

收缩