一聚教程网:一个值得你收藏的教程网站

热门教程

ecshop提示Strict Standards: Non-static method cls_image::gd_version()

时间:2022-06-25 16:24:40 编辑:袖梨 来源:一聚教程网

在使用ecshop时提示

ecshop提示Strict Standards: Non-static method cls_image::gd_version() should not be called statically in E:/wwwroot/weirenchou/includes/lib_base.php on line 346

这个错误,搜索问题原来是php版本的问题,我是用的php5.4版本的,解决办法如下:

找到346行吧

return cls_image::gd_version()

替换成:

$p = new cls_image();

return $p->gd_version();

这样就行了,由于php版本不同导致的问题。

热门栏目