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解决办法相关的知识,希望对你有一定的参考价值。

本文章来给各位同学介绍关于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

 

 

以上是关于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的解决方法

每日思考(2020/01/17)

爱创课堂每日一题第四十二天- 你知道多少种Doctype文档类型?

用laravel dingo/api创建简单的api