您的位置:首页 > Web前端

安装ECSHOP错误,Strict Standards: Only variables should be passed by reference

2014-10-07 11:31 387 查看
环境:php5.4 + mysql 5.5

错误警告:Strict Standards: Only variables should be passed by reference in D:\www\Apache2.2\htdocs\ecshop\includes\cls_template.php on line 418

找到418行代码:$tag_sel = array_shift(explode(' ', $tag));

--------------------------------------------------------

解决办法:将该行代码分开写成两行即可

$tag_arr = explode(' ',$tag);

$tag_sel = array_shift($tag_arr);

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐