虚位以待(AD)
虚位以待(AD)
首页 > CMS教程 > Ecshop > 安装ECSHOP错误,Strict?Standards:?Only?variables?should?be?passed?by?reference

安装ECSHOP错误,Strict?Standards:?Only?variables?should?be?passed?by?reference
类别:Ecshop   作者:码皇   来源:互联网   点击:

环境:php5 4 + mysql 5 5 错误警告:Strict Standards: Only variables should be passed by reference in D:wwwApache2 2htdocsecshopincludescls_template php on line 418 找到418行代码:$tag_sel = array_sh ,魔客吧
环境:php5.4 + mysql 5.5
错误警告:Strict Standards: Only variables should be passed by reference in D:wwwApache2.2htdocsecshopincludescls_template.php on line 418
找到418行代码:$tag_sel = array_shift(explode(' ', $tag));
--------------------------------------------------------
解决办法:将该行代码分开写成两行即可
$tag_arr = explode(' ',$tag);
$tag_sel = array_shift($tag_arr);

相关热词搜索: 安装ECSHOP错误,Strict?Standards:?Only?