首页 > 织梦时间格式实现多少秒前、多少分钟前、多少天前

织梦时间格式实现多少秒前、多少分钟前、多少天前

织梦时间格式设置为多少秒前、多少分钟前、多少天前

1、打开“/include/extend.func.php”,在文件最后面加入:
/**
 *  时间美化
 *
 * @access    public
 * @param     string  $time   时间戳
 * @return    string
 */
if(!function_exists('tranTime'))
{
 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;
   }
  };
 }
}

2、调用标签写法:

首页/列表页
[field:pubdate function="tranTime(@me)"/]

内容页
{dede:field.pubdate function="tranTime(@me)"/}
如果你的时间格式是“2019-08-29”这种正常时间,那调用标签要这样写:
[field:pubdate function="tranTime(GetMkTime(@me))"/]

{dede:field.pubdate function="tranTime(GetMkTime(@me))"/}

DedeCMS推荐
织梦采集https链接时却生成http协...
织梦后台登录出现500错误解决方案
织梦首页调用自定义表单内容方法
织梦自定义表单地区联动类型不可用的解决办...
织梦模板文档关键词维护中频率详解
织梦后台栏目显示的文档数与实际文档数不一...