本主题在PHP7.2下,圈子功能会报错:Parameter must be an array or an object that implements Countable,错误提示在/usr/themes/onecircle/libs/CircleFollow.php 的第101行,/usr/themes/onecircle/libs/UserFollow.php的第109行。
这是因为php7.2或以上版本,count()函数中的参数必须是数组或者对象。不能是其他的。
找到对应的count()函数,在这个函数之前加上

if (empty($row)){
           $row=array();
         }

或者把php版本降到7.2以下

分类: 学习 标签: 暂无标签

评论

暂无评论数据

暂无评论数据

目录