解决Strict Standards: Only variables should be passed by reference in C:\Apache24\htdocs\ecshop\in

下一篇:很抱歉没有了

Strict Standards: Only variables should be passed by reference in C:\Apache24\htdocs\ecshop\includes\cls_template.php on line 422

问题语句:$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以上默认只能传递具体的变量,而不能通过函数返回值

来源://作者:/更新时间:2014-02-18
相关文章
评论:
验证码:
匿名评论: