当前位置:首页 > CMS教程 > ecshop > 列表

php5.5中ecshop提示Only variables should be passed by reference

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-04 14:36:10 浏览: 评论:0 

php5.5升级了很多功能的同时也去除了不少功能了,小编在使用ecshop提示Only variables should be passed by reference错误了,下文就来和各位一起看解决办法.

php大家用的版本不断提高,Ecshop没有来得及修改那么及时.

Ecshop安装出现:Only variables should be passed by reference

5.3以上版本的问题,应该也和配置有关 只要418行把这一句拆成两句就没有问题了,代码如下:

$tag_sel = array_shift(explode(' ', $tag));

改成:$tag_arr = explode(' ', $tag);  $tag_sel = array_shift($tag_arr);

实验过,绝对可行,因为array_shift的参数是引用传递的,5.3以上默认只能传递具体的变量,而不能通过函数返回值.

修改代码如下:

  1. Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead...? 
  2. cls_template.php  //开源软件:phpfensi.com 
  3.  $out = "<?php \n" . '$k = ' . preg_replace_callback("/(\'\\$[^,]+)/e" , "stripslashes(trim('\\1','\''));", var_export($t, true)) . ";\n";

Tags: Only variables should be passed

分享到: