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

或则如果这样配置的话:

error_reporting = E_ALL | E_STRICT

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

猜你喜欢

转载自ldl-xz.iteye.com/blog/2284664
今日推荐