ECShop出现Strict Standards: Only variables should be passed by reference in的解决方法

简介: 引用其他网络已解决文章,收藏起来,以便翻阅。侵删装ecshop之后有些可能出现这样的错误:Strict Standards: Only variables should be passed by reference in F:\www.

引用其他网络已解决文章,收藏起来,以便翻阅。侵删

装ecshop之后有些可能出现这样的错误:

Strict Standards: Only variables should be passed by reference in F:\www.xxxx.com\cls_template.php on line 418

原因:

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

解决方法:

找到“cls_template” =====》的第418行,你会发现这段代码
$tag_sel = array_shift(explode(' ', $tag));
修改为:
$tagArr = explode(' ', $tag); $tag_sel = array_shift($tagArr);

最后

这样之后顶部的报错没掉了,左侧和底部的报错还需要去ecshop的后台点击清除缓存才能去除。

相关文章
|
4月前
|
JavaScript 前端开发
We‘re sorry but xxxxxx doesn‘t work properly without JavaScript enabled.
We‘re sorry but xxxxxx doesn‘t work properly without JavaScript enabled.
|
11月前
Error: Plugin/Preset files are not allowed to export objects, only functions……
Error: Plugin/Preset files are not allowed to export objects, only functions……
|
前端开发 开发工具 git
|
安全 Java C++
Note
开发分布式应用distributed;强类型机制 异常处理exception except 垃圾的自动收集java对通过网络下载的类具有安全防范机制通过网络下载的类有一个安全防范机制;classLoader;分配不同的名字空间以防替代本地的同名类,字节代码检查,并提供安全管理机制SecurityMa...
1070 0
|
PHP
Notice: Only variable references should be returned by reference(PHP版本兼容性问题)
摘自:http://sushener.spaces.live.com/blog/cns!BB54050A5CFAFCDD!435.entry PHP5一个很让人恼火的一点就是BC(向后兼容)不是很理想。
1147 0
|
PHP 缓存
ECShop出现Strict Standards: Only variables should be passed by reference in的解决方法
  今天安装ecshop的时候最上面出现了一个错误提示:Strict Standards: Only variables should be passed by reference in F:\www.
1071 0
|
PHP
PHP5.3的类继承错误:Strict Standards: Declaration of should be compatible with
2011-07-21 15:10 should be compatible with that of Strict Standards: Declaration of Zend_Db_Adapter_Php_Dbphp::insert() should...
909 0
下一篇
无影云桌面