ecshop array_shift
Strict Standards: Only variablesshould be passed by reference in ????\includes\cls_template.php on line 424
原代码:$tag_sel= array_shift(explode("", $tag));
修改为:$tag_tmp= (explode(" ", $tag));
$tag_sel = array_shift($tag_tmp);
原因:原因在于PHP5.3版本开始,array_shift不支持函数返回
声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。