ecshop 在高版本PHP下报错的解决方法

WBOY
发布: 2016-07-30 13:29:56
原创
984 人浏览过

1 .ecshop提示Strict Standards: Non-static method cls_image

::gd_version() should not be called statically inE:\wwwroot\weirenchou\includes\lib_base.php on line 346

找到346行吧
return cls_image::gd_version()
登录后复制
替换成:
$p = new cls_image();

return $p->gd_version();
登录后复制


2 .ecshop的时候出现如下错误Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in \ecshop\includes\cls_template.php on line 300


打开ecshop的目录找到includes\cls_template.php 到第300行
return preg_replace("/{([^\}\{\n]*)}/e", "\$this->select('\\1');", $source); <pmicrosoft yahei neue sans gb font-size:14px line-height:24px border:medium none list-style:none outside margin-top:0px margin-bottom:15px padding-top:0px padding-bottom:0px background-color:rgb>替换成<pmicrosoft yahei neue sans gb font-size:14px line-height:24px border:medium none list-style:none outside margin-top:0px margin-bottom:15px padding-top:0px padding-bottom:0px background-color:rgb><pmicrosoft yahei neue sans gb font-size:14px line-height:24px border:medium none list-style:none outside margin-top:0px margin-bottom:15px padding-top:0px padding-bottom:0px background-color:rgb><pre name="code">return preg_replace_callback("/{([^\}\{\n]*)}/", function($r) { return $this->select($r[1]); }, $source);
登录后复制

3. Strict Standards: Only variables should be passed by reference in E:\web\shopex\includes\cls_template.php on line 422
$tag_sel = array_shift(explode(' ', $tag));
登录后复制

改成:

$tag_arr = explode(' ', $tag);  $tag_sel = array_shift($tag_arr);
登录后复制



版权声明:本文为博主原创文章,未经博主允许不得转载。

以上就介绍了ecshop 在高版本PHP下报错的解决方法,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!