欢迎来到源码交易网,为站长提供交易担保服务 访问移动版
站长交易首选担保平台!
酷客淘

处理ecshop问题 Strict Standards: Only variables should be passed by reference in的方法

日期: 2019-07-04 08:06:07 人气: -

错误:Strict Standards: Only variables should be passed by reference in F:\www.xxxx.com\include\cls_template.php on line 418


修改文件:include/cls_template.php


将代码


$tag_sel = array_shift(explode(' ', $tag));


改成


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

$tag_sel = array_shift($tagArr);