把以下的内容复制到 /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."前";
}
然后在帝国cms模版里放入相应的时间标签。
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");
然后保存。
标签: cur, num, php语法, time, tm, 时间格式
上面是“帝国CMS如何修改时间格式,变成几分钟,几小时”的全面内容,想了解更多关于 帝国cms 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_1235.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!