ECshop Strict Standards: Only variables should be passed by reference in解决办法

来源:互联网 发布:mac死机怎么办 编辑:程序博客网 时间:2024/05/16 05:51
本文章来给各位同学介绍关于ECshop Strict Standards: Only variables should be passed by reference in解决办法,希望此教程 对各位同学有所帮助。

错误提示

Strict Standards: Only variables should be passed by reference in D:/wamp/ecshop/includes/cls_template.php on line 406

用软件打开406行是这句话$tag_sel = array_shift(explode(' ', $tag));

解决方法

5.3以上版本的问题,应该也和配置有关

只要406行把这一句拆成两句就没有问题了

 代码如下复制代码

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

改成:

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

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

0 0