帝国cms7.2版本实现发布时间为:几小时前、几天前等格式的方法_帝国Cms教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

帝国cms7.2怎样实现时间为:几小时前、几天前等格式

将以下代码放到:userfun.php <?ph ?>之间

  1. function user_time($tm,$num) { 
  2. if($num==1){ 
  3.    $tm =  strtotime($tm); 
  4.    $cur_tm = time(); $dif = $cur_tm-$tm; 
  5.    $pds = array('秒','分钟','小时','天','周','个月','年'); 
  6.    $lngh = array(1,60,3600,86400,604800,2630880,31570560); 
  7.    for($v = sizeof($lngh)-1; ($v >= 0)&&(($no = $dif/$lngh[$v])<=1); $v--); if($v < 0) $v = 0; $_tm = $cur_tm-($dif%$lngh[$v]); 
  8.    $no = floor($no); 
  9.    $x=sprintf("%d%s",$no,$pds[$v]); 
  10.    return $x."前"; 

列表模板调用:'.user_time($r[newstime],0).' (注:如果不会列表放代码,请看wareelll 在11楼的提示)

内容模板调用:<?=user_time($navinfor[newstime],0)?>
有需要的记录下来,仅供参考学习哦~

查看更多 帝国cms教程  帝国cms模板

来源:模板无忧//所属分类:帝国Cms教程/更新时间:2020-06-06
相关帝国Cms教程