在安装 ECShop V2.7.3 版本时,安装程序会提示错误,错误信息:Strict Standards: Non-static method cls_image::gd_version() should not be called statically in D:phpstudyWWWshopinstall\includeslib_installer.php on line 31,出错位置代码如下:
function get_gd_version() { include_once(ROOT_PATH . 'includes/cls_image.php'); return cls_image::gd_version(); }
这个错误的原因是程序调用的 cls_image 类中的 gd_version()不是 static 静态方法,无法通过::直接调用方法。
解决方法有两种:
一,创建 cls_image 类的对象后再调用相应方法,将上述代码改为如下形式:
function get_gd_version() { include_once(ROOT_PATH . 'includes/cls_image.php'); $gv = new cls_image(); return $gv->gd_version(); }
二,修改 cls_image 类中的 gd_version()方法为静态方法,打开 include/cls_image.php 文件,将 678 行的 function gd_version()改成 static function gd_version()即可。
因为在 ECShop 中存在多处这种调用方法,为了避免反复报错修改,所以强烈推荐采用第二种方法。
声明:本文为原创文章,版权归主机之家测评所有,欢迎分享本文,转载请保留出处!