目前支持:標簽模板,列表模板,內容模板,評論JS調用模板和官方新出的內容頁評論AJAX分頁顯示插件
安裝說明:
把userfun.txt里面的內容復制到 /e/class/userfun.php 文件里(放在<?php和?>之間就可以了。
使用說明:
1在標簽模板、列表模板中的調用:
代碼: '.user_time($r[newstime],0).'
2.在內容頁中調用
代碼:<?=user_time($navinfor[newstime],0)?>
3.在評論JS調用模板調用方法:
在評論JS調用模板把[!--pltime--]換成<?=user_time($r[saytime],1)?>
然后打開e\pl\more\index.php ,在 require("../../class/connect.php"); 下一行加入 require("../../class/userfun.php");
然后保存。
4.在官方的內容頁評論AJAX分頁顯示插件中調用:
打開e\extend\infocomment\template\index.php ,把<?=$r[saytime]?>替換成:<?=user_time($r[saytime],1)?>
然后打開e\extend\infocomment\index.php ,在 require("../../class/connect.php"); 下一行加入 require("../../class/userfun.php");
userfun.txt代碼如下:
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分鐘 前"的話,請把%d%s改成%d %s
$x=sprintf("%d%s",$no,$pds[$v]);
return $x."前";
}