帝国CMS实现发布时间显示为“几小时前、几天前”格式
建站教程 阅读如何将帝国CMS发布时间改为“几小时前、几天前”等格式呢?
将以下代码放到:userfun.php <?ph ?>之间
function user_time($tm,$num) { if($num==1){ $tm = strtotime($tm); } $cur_tm = time(); $dif = $cur_tm-$tm; $pds = array('秒','分钟','小时','天','周','个月','年'); $lngh = array(1,60,3600,86400,604800,2630880,31570560); for($v = sizeof($lngh)-1; ($v >= 0)&&(($no = $dif/$lngh[$v])<=1); $v--); if($v < 0) $v = 0; $_tm = $cur_tm-($dif%$lngh[$v]); $no = floor($no); $x=sprintf("%d%s",$no,$pds[$v]); return $x."前"; }
然后在需要显示的地方调用
列表模板调用:'.user_time($r[newstime],0).'
内容模板调用:<?=user_time($navinfor[newstime],0)?>
本文链接:https://niujc.com/com/1327559.html
晚上好!当前时间为
目前距离2023年春节还有
TOP