关于ecshop报错Only variables should be passed by reference in

2016-09-11 20:39 来源:www.chinab4c.com 作者:ecshop专家

 ecshop安装完毕出现如下报错:

 Strict Standards: Only variables should be passed by reference in I:\\Project\\zuimoban\\includes\\cls_template.php on line 406

代码出在cls_template.php on line 406文件

这是ecshop不兼容PHP 5.3 以上版本,应该也和配置有关

只要406行把这一句拆成两句就没有问题了
$tag_sel = array_shift(explode(' ', $tag));


改成:


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


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

或则如果这样配置的话:
error_reporting = E_ALL | E_STRICT