欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

count(): Parameter must be an array or an object that implements Countable

程序员文章站 2022-03-23 17:57:08
...

laravel版本:5.5
php版本:7.2.1
报错的使用场景: 一个不带where条件的查询

$result = User::query()->paginate($pageCount);
dd($result);

count(): Parameter must be an array or an object that implements Countable

count(): Parameter must be an array or an object that implements Countable
主要是7.2版本更新,部分方法变得更加严谨了
当传递一个无效参数的时候,count()函数会抛出warning的警告

解决办法
1.如果是使用laravel框架报错的话,composer update一下就可以修复了。
2.尽量不要传递无效的参数执行count,做好校验判断预防报错。