关于ecshop报错gd_version() should not be called

2016-09-11 20:39 来源:www.chinab4c.com 作者:ecshop专家

ecshop出现Strict级别错误:
Strict Standards: Non-static method cls_image::gd_version() should not be called statically
includes/lib_base.php文件中的gd_version()函数


includes/lib_base.php文件中的gd_version()函数中搜索:
return cls_image::gd_version();

修改为:
$img = new cls_image();
return $img->gd_version();

当然也可以在cls_image类中将gd_version方法定义为静态的。

如果错误还存在,记得后台清除缓存。

此函数是直接静态调用cls_image类中的gd_version方法,原始代码:return cls_image::gd_version();因为cls_image类中的gd_version非静态方法,这样调用会出现Strict级别错误: