首页 > 网站 > 建站经验 > 正文

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

2024-04-25 20:35:37
字体:
来源:转载
供稿:网友

环境: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);

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表