-
物流快运速递类网站织梦...
-
中英双语律师事务所类网...
-
展览展会信息类网站织梦...
-
貂绒大衣服装设计类网站...
-
电子元件电路板类网站织...
-
仪器分析仪类网站织梦模...
-
食品百货英文外贸类网站...
-
电脑系统软件下载类网站...
-
人力资源管理类网站织梦...
-
蔬菜鲜果配送类网站织梦...
-
钢结构岗亭营销型织梦网...
-
玩具动漫类网站织梦模板...
-
财税记账工商注册认证类...
-
仪器仪表科技公司类网站...
-
装饰建材公司类网站织梦...
-
水利工程施工类网站织梦...
-
营销型无缝钢管定制生产...
-
网站模板资源下载类网站...
-
精工机械轴承生产厂家类...
-
手游APP软件下载类网站织...
织梦模板资源站的后台会员消费记录存在BUG,在消费时间后边跟随的人性化时间不准确,一年前的单子也显示几天前。我们分享以下方法修复问题。
打开/include/helpers/time.helper.php文件
找到
function FloorTime($seconds){$times = '';$days = floor(($seconds/86400)%30);$hours = floor(($seconds/3600)%24);$minutes = floor(($seconds/60)%60);$seconds = floor($seconds%60);if($seconds >= 1) $times .= $seconds.'秒';if($minutes >= 1) $times = $minutes.'分钟 '.$times;if($hours >= 1) $times = $hours.'小时 '.$times;if($days >= 1) $times = $days.'天';if($days > 30) return false;$times .= '前';return str_replace(" ", '', $times);}
改成
function FloorTime($date) {$str = '';$timer = $date;$diff = $_SERVER['REQUEST_TIME'] - $timer;$day = floor($diff / 86400);$free = $diff % 86400;if($day > 0) {return $day."天前";}else{if($free>0){$hour = floor($free / 3600);$free = $free % 3600;if($hour>0){return $hour."小时前";}else{if($free>0){$min = floor($free / 60);$free = $free % 60;if($min>0){return $min."分钟前";}else{if($free>0){return $free."秒前";}else{return '刚刚';}}}else{return '刚刚';}}}else{return '刚刚';}}}
打开/dede/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>)