前不久帮一个朋友把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个地方修改好之后,后台刷新缓存,就不会抛出错误信息了。
原创文章如转载,请注明出处,本文首发于彭超的博客
打赏
微信扫一扫,打赏作者吧~