欢迎来到入门教程网!

dedecms

当前位置:主页 > CMS教程 > dedecms >

DEDECMS后台会员消费记录人性化时间显示不准的解决方法

来源:本站原创|时间:2021-08-05|栏目:dedecms|点击:

EDECMS的后台会员消费记录存在BUG,在消费时间后边跟随的人性化时间不准确,一年前的单子也显示几天前。需要进行修改。

 

1、打开include/helpers/time.helper.php,找到

 

 

01 function FloorTime($seconds)
02     {
03         $times '';
04         $days = floor(($seconds/86400)%30);
05         $hours = floor(($seconds/3600)%24);
06         $minutes = floor(($seconds/60)%60);
07         $seconds = floor($seconds%60);
08         if($seconds >= 1) $times .= $seconds.'秒';
09         if($minutes >= 1) $times = $minutes.'分钟 '.$times;
10         if($hours >= 1) $times = $hours.'小时 '.$times;
11         if($days >= 1)  $times = $days.'天';
12         if($days > 30) return false;
13         $times .= '前';
14         return str_replace(" "'', $times);
15     }

替换为以下代码即可:

 

 

01 function FloorTime($date) {
02 $str = '';
03 $timer = $date;
04 $diff = $_SERVER['REQUEST_TIME'] - $timer;
05 $day = floor($diff / 86400);
06 $free = $diff % 86400;
07 if($day > 0) {
08 return $day."天前";
09 }else{
10 if($free>0){
11 $hour = floor($free / 3600);
12 $free = $free % 3600;
13 if($hour>0){
14 return $hour."小时前";
15 }else{
16 if($free>0){
17 $min = floor($free / 60);
18 $free = $free % 60;
19 if($min>0){
20 return $min."分钟前";
21 }else{
22 if($free>0){
23 return $free."秒前";
24 }else{
25 return '刚刚';
26 }
27 }
28 }else{
29 return '刚刚';
30 }
31 }
32 }else{
33 return '刚刚';
34 }
35 }
36 }

 

 

2、打开后台管理目录下的templets/member_operations.htm,找到

 

(<font color="#FF0000">{dede:field.mtime function="floorTime(time()-@me,@me)"/}</font>)

 

替换为:

 

(<font color="#FF0000">{dede:field.mtime function="floorTime(@me)"/}</font>)

 

更改完毕。
 

上一篇:dedecms模板列表页面第一个文章的特殊样式的实现代码

栏    目:dedecms

下一篇:织梦实现某小时前,某天前发布的时间标签代码

本文标题:DEDECMS后台会员消费记录人性化时间显示不准的解决方法

本文地址:https://www.xiuzhanwang.com/a1/dedecms/16596.html

更多dedecms

您可能感兴趣的文章

阅读排行

本栏相关

随机阅读

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有