日期: 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);