该插件已经在帝国cms6.6上测试通过,至于其他版本,请自行测试。
目前支持:标签模板,列表模板,内容模板
安装说明:
把以下的内容复制到 /e/class/userfun.php
文件里(放在<?php
和?>
之间就可以了。
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).'
2.在内容页中调用
<?=user_time($navinfor[newstime],0)?>
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)