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));

解决方法php

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

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

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

改为:code

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

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

或则若是这样配置的话:变量

error_reporting = E_ALL | E_STRICT

转载自:http://www.9958.pw/post/ecshop_error_01sed

相关文章
相关标签/搜索