码迷,mamicode.com
首页 > 其他好文 > 详细

已解决:Strict Standards: Only variables should be passed by reference in

时间:2016-12-22 10:52:24      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:variables   赋值   variable   不能   nbsp   代码   sel   exp   还需   

今天安装ecshop的时候最上面出现了一个错误提示:Strict Standards: Only variables should be passed by reference in F:\www.xxxx.com\cls_template.php on line 418

解决办法:

打开cls_template.php文件中发现下面这段代码:


$tag_sel = array_shift(explode(‘ ‘, $tag));
忘记说了,我的PHP版本是5.4.19,PHP5.3以上默认只能传递具体的变量,而不能通过函数返回值传递,所以这段代码中的explode就得移出来重新赋值了

$tagArr = explode(‘ ‘, $tag);
$tag_sel = array_shift($tagArr);
这样之后顶部的报错没掉了,左侧和底部的报错还需要去ecshop的后台点击清除缓存才能去除。

已解决:Strict Standards: Only variables should be passed by reference in

标签:variables   赋值   variable   不能   nbsp   代码   sel   exp   还需   

原文地址:http://www.cnblogs.com/Beyron/p/6209880.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!