2.7.3 ecshop php7.1_ecshop2.7.3完美运行在PHP5.3以上版本需要修改的地方

前不久帮一个朋友把ECSHOP放到PHP5.6的web服务器上,发现出现了好多错误,现在把需要修改的地方统一贴在下面:

一是新版本的PHP弃用了preg_replace()函数,需要改为preg_replace_callback()

vim  inclouds/cls_template.php

第288行return preg_replace("/{([^\}\{\n]*)}/e", "\$this->select('\\1');", $source);

修改为:return preg_replace_callback("/{([^\}\{\n]*)}/", function($r) { return $this->select($r[1]); }, $source);

第480行$out = "<?php  " . '$k = ' . preg_replace("/(\'\\$[^,] )/e" , "stripslashes(trim('\\1','\''));", var_export($t, true)) . ";";

修改为:$replacement = preg_replace_callback("/(\'\\$[^,]+)/" ,function($matcher){return stripslashes(trim($matcher[1],'\''));},var_export($t, true));

$out = "<?php  \n" . '$k = ' . $replacement . ";\n";

第540行$val = preg_replace("/\[([^\[\]]*)\]/eis", "'.'.str_replace('$','\$','\\1')", $val);

修改为:$val = preg_replace_callback('/\[([^\[\]]*)\]/is',function ($matches) {return '.'.str_replace('$','\$',$matches[1]);},$val);

第1066行$source = preg_replace($pattern, $replacement, $source);

修改为:$source = preg_replace_callback($pattern,function ($matches) { return "{include file=".strtolower($matches[1])."}";},$source);

二是inclouds/lib_main.php里面有一行在新版PHP中会报错的代码:

vim inclouds/cls_template.php

第1316行$ext = end(explode('.', $tmp));

修改为:$extarr = explode('.', $tmp);

$ext = end($extarr);

以上2个地方修改好之后,后台刷新缓存,就不会抛出错误信息了。

原创文章如转载,请注明出处,本文首发于彭超的博客

打赏

微信扫一扫,打赏作者吧~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值