Ecshop却没来得及修改,如果在高版本的PHP虚拟主机上安装ecshop程序,出现兼容性问题。
小编在本地环境PHP5.5上安装出现以下两种报错提示
:Only variables should be passed by reference PHP Deprecated: preg_replace(): The /e modifier is deprecated,use preg_replace_callback instead…?
通过在网络上查找,小编发现并不是只能在低版本的PHP中安装,也是找到了解决办法,方便大家在PHP5.5版本上调试程序。小编就在这里把解决方法分享给大家:
先说明第一个问题的解决方法:
PHP 5.3以上版本的问题,和配置有关 只要418行把这一句拆成两句就没有问题了。
将下列:
PHP;">
$tag_sel = array_shift(explode(' ',$tag));
修改为:
PHP;">
$tag_arr = explode(' ',$tag); $tag_sel = array_shift($tag_arr);
因为array_shift的参数是引用传递的,5.3以上默认只能传递具体的变量,而不能通过函数返回值
第二个报错解决办法:
找到文件:
include/cls_template.PHP
将以下代码:
select('\\1');",$source);
修改成:
select($r[1]); },$source);
小编目前只遇到这样两个报错,如果在程序调试和开发过程中遇到其他的问题,如果能够解决,小编也是会整理出解决方法的。
1 .ecshop提示Strict Standards: Non-static method cls_image
PHP;">
::gd_version() should not be called statically inE:/wwwroot/weirenchou/includes/lib_base.PHP on line 346
找到346行吧
PHP;">
return cls_image::gd_version()
替换成:
gd_version();
2 .ecshop的时候出现如下错误:
PHP;">
Deprecated: preg_replace(): The /e modifier is deprecated,use preg_replace_callback instead in /ecshop/includes/cls_template.PHP on line 300
打开ecshop的目录找到includes/cls_template.PHP 到第300行
把
select('//1');",$source);
替换成
PHP;">
return preg_replace_callback("/{([^/}/{/n]*)}/",$source);
3. Strict Standards: Only variables should be passed by reference in E:/web/shopex/includes/cls_template.PHP on line 422
PHP;">
$tag_sel = array_shift(explode(' ',$tag));
改成:
PHP;">
$tag_arr = explode(' ',$tag); $tag_sel = array_shift($tag_arr);
4 .会员整合出现
PHP;">
PHPbb::set_cookie() should be compatible with integrate
/includes/modules/integrates/PHPbb.PHP on line 232
110行
function set_cookie ($username="")
修改成
PHP;">
function add_user($username,$password,$email,$gender = -1,$bday = 0,$reg_date = 0,$md5password = '')
127行修改成
PHP;">
function login($username,$remember = NULL)
5. 数据库备份出现
/admin/includes/cls_sql_dump.php on line
function __construct(&$db,$max_size =)
{
$this->cls_<a href="https://www.jb51.cc/tag/sql/" target="_blank" class="keywords">sql</a>_dump($db,$max_size);
}
移到function cls_sql_dump(&$db,$max_size=0)前面
479行
PHP;">
function get_random_name()
修改成
PHP;">
static function get_random_name()
原文链接:https://www.f2er.com/php/21243.html