ECshop Strict Standards: Only variables should be passed by reference in解决办法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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); |
因为array_shift的参数是引用传递的,5.3以上默认只能传递具体的变量,而不能通过函数返回值
或则如果这样配置的话:
error_reporting = E_ALL | E_STRICT
以上是关于ECshop Strict Standards: Only variables should be passed by reference in解决办法的主要内容,如果未能解决你的问题,请参考以下文章
已解决:Strict Standards: Only variables should be passed by reference in
MagicZoom bug-Strict Standards: Only variables should be assigned by reference Error
php中出现Strict Standards: Only variables should be passed by reference in的解决方法