該插件已經在帝國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."前";
}
使用說明:
1.在標簽模板、列表模板中的調用:
'.user_time($r[newstime],0).'
2.在內容頁中調用:
<?=user_time($navinfor[newstime],0)?>