打开页面出现这个,为什么啊includes\cls_template.php on line 418

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家

( ! ) Strict standards: Only variables should be passed by reference in D:\wamp\www\ecshop\includes\cls_template.php on line 418这个是什么问题啊

用过的方法,这些全部试过没有用:
Strict Standards: Only variables should be passed by reference in upload\includes\cls_template.phpon line 418
第418行:$tag_sel = array_shift(explode(' ', $tag));
解决办法 1 ():
5.3以上版本的问题,应该也和配置有关 只要418行把这一句拆成两句就没有问题了$tag_sel = array_shift(explode(' ', $tag)); 改成: $tag_arr = explode(' ', $tag);$tag_sel = array_shift($tag_arr);
(实验过,绝对可行) 因为array_shift的参数是引用传递的,5.3以上默认只能传递具体的变量,而不能通过函数返回值
解决办法 2(屏蔽错误) :
或则如果这样配置的话: error_reporting = E_ALL | E_STRICT
php.ini中有如下设置:
error_reporting = E_ALL | E_STRICT

这是说,显示那些不符合编码规范的警告(coding standards warnings)。

Joomla其实是建议取消error的输出,如果出于调试需要,应改为
error_reporting = E_ALL & ~E_NOTICE

( ! ) Strict standards: Only variables should be passed by reference in D:\wamp\www\ecshop\includes\cls_template.php on line 418

回答:
估计是权限!!!!或者数据库,或者模板!!

EC在5。3以上是有问题。写法上



回错贴,不好意思