网站地图    收藏   

主页 > 后端 > ecshop教程 >

ecshop提示Strict Standards: Non-static method cls_image::gd_ve

来源:未知    时间:2014-12-02 20:45 作者:xxadmin 阅读:

[导读] 下面我们一起来看在使用ecshop提示Strict Standards:Non-static method cls_image::gd_version() should not be called statically错误问题解决办法吧。 在使用ecshop时提示: Strict Standards: Non-static method cls_image::g...

下面我们一起来看在使用ecshop提示Strict Standards:Non-static method cls_image::gd_version() should not be called statically错误问题解决办法吧。

在使用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()

替换成:

  1. $p = new cls_image(); 
  2. //开源软件:phpfensi.com 
  3. return $p->gd_version(); 

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

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论