ECSHOP使用PHP高版本报错解决办法

*文
发布: 2017-12-21 10:16:18
原创
3706人浏览过

ECSHOP在较高的PHP版本中运行可能会有一些兼容问题报错,让我们来看看如何去解决吧!

相关mysql视频教程推荐:《mysql教程

第一种

     Strict Standards: Non-static method cls_image::gd_version() should not be called statically in
       F:\xampp\htdocs\ceshi\includes\lib_base.php on line 346
登录后复制

    解决办法:
    按照文件路径,找到  return cls_image::gd_version();
    修改为:

立即学习PHP免费学习笔记(深入)”;

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

第二种

        Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead
          in F:\xampp\htdocs\ceshi\includes\cls_template.php on line 300
登录后复制

    解决办法:
    按照文件路径,找到   return preg_replace("/{([^}{\n])}/e", "$this->select('\1');", $source);
    修改为:

    return preg_replace_callback("/{([^}{\n])}/", function($r){return $this->select($r[1]);}, $source);
登录后复制

第三种

    Strict Standards: Only variables should be passed by reference 
      in F:\xampp\htdocs\ceshi\includes\cls_template.php on line 422
登录后复制

    解决办法:
    按照文件路径,找到$tag_sel = array_shift(explode(' ', $tag));
    修改为:
    $tag_arr = explode(' ', $tag);
    $tag_sel = array_shift($tag_arr);

第四种

    Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead
       in F:\xampp\htdocs\ceshi\includes\cls_template.php on line 1074
登录后复制

    解决方法
    按照文件路径,找到

    $pattern = '/.?/se';
    $replacement = "'{include file='.strtolower('\1'). '}'";
    $source      = preg_replace($pattern, $replacement, $source);
登录后复制

    修改为:

    $pattern = '/.?/s';
    $replacement = function($r){return '{include file='.strtolower($r[1]). '}';};
    $source = preg_replace_callback($pattern, $replacement, $source);
登录后复制

第五种

    Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead
      in F:\xampp\htdocs\ceshi\includes\cls_template.php on line 496
登录后复制

    解决方法
    按照文件路径,找到

    $out = "<?php \n" . '$k = ' . preg_replace("/('\$[^,]+)/e" , "stripslashes(trim('\1','''));", var_export($t, true)) . ";\n";
登录后复制

    修改为:

    $out = "<?php \n" . '$k = ' . preg_replace_callback("/('\$[^,]+)/", function(){return stripslashes(trim('\1','''));}, var_export($t, true)) . ";\n";
登录后复制

第六种

    Strict Standards: Only variables should be passed by reference
            in F:\xampp\htdocs\ceshi\includes\lib_main.php on line 1329
登录后复制

    解决办法
    按照文件路径,找到

    $ext = end(explode('.', $tmp));
登录后复制

    修改为:

    $ext = explode('.', $tmp);
    $ext = end($ext);
登录后复制

第七种

    Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead 
        in F:\xampp\htdocs\ceshi\includes\cls_template.php on line 556
登录后复制

    解决办法
    按照文件路径,找到

    $val = preg_replace("/[([^[]])]/eis", "'.'.str_replace('$','$','\1')", $val);
登录后复制

    修改为:

    $val =preg_replace_callback("/[([^[]])]/is", function(){return '.'.str_replace('$','$','\1');}, $val);
登录后复制

第八种

    Strict Standards: Declaration of vbb::set_cookie() should be compatible with integrate::set_cookie($username = '', $remember = NULL)
登录后复制

    解决办法
    子类的函数跟父类的同名,必须使子类的函数参数跟父类的对应函数参数个数相同
    依据错误提示,修改例如:

    function set_cookie ($username="")
登录后复制

    改为

    function set_cookie ($username="", $remember = NULL)
登录后复制

第九种

    Strict Standards: mktime(): You should be using the time() function instead 
        in F:\xampp\htdocs\ceshi\admin\sms_url.php on line 31
登录后复制

    解决办法
    按照文件路径,找到

    $auth = mktime();
登录后复制

    修改为

    $auth = time();
登录后复制

第十种

    Strict Standards: Redefining already defined constructor for class alipay 
        in F:\xampp\htdocs\ceshi\includes\modules\payment\alipay.php on line 85
登录后复制

    解决方法
    PHP 类,有两种构造函数,一种是跟类同名的函数,一种是__construct()。从PHP5.4开始,对这两个函数出现的顺序做了最严格的定义,必须是 __construct()在前,同名函数在后
    例如:

    function __construct()
    {
        $this->paypal();
    }
    function paypal()
    {
    }
登录后复制

相关教程:

关于ecshop验证码图片问题的解决

ecshop $_CFG

ecshop中的init.php文件详解

以上是本篇文章的全部内容,同学们也可以在评论区进行讨论哦~

以上就是ECSHOP使用PHP高版本报错解决办法的详细内容,更多请关注php中文网其它相关文章!

PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号