答案已更新
count 是一个收集方法。查询生成器返回一个数组。因此,为了获得计数,您只需像通常使用数组一样计算它:
$wordCount = count($wordlist);
如果你有一个 wordlist 模型,那么你可以使用 Eloquent 获取一个 Collection,然后使用 Collection 的 count 方法。示例:
$wordlist = Wordlist::where('id', '<=', $correctedComparisons)->get();
$wordCount = $wordlist->count();
关于让查询生成器在此处返回集合的讨论:https://github.com/laravel/framework/issues/10478
但是到目前为止,查询构建器始终返回一个数组。
编辑:如上所述,查询构建器现在返回一个集合(不是数组)。因此,JP Foster 最初尝试做的事情将会奏效:
$wordlist = \DB::table('wordlist')->where('id', '<=', $correctedComparisons)
->get();
$wordCount = $wordlist->count();
但是,正如 Leon 在 cmets 中指出的那样,如果您只需要计数,那么直接查询它比获取整个集合然后获取计数要快得多。换句话说,您可以这样做:
// Query builder
$wordCount = \DB::table('wordlist')->where('id', '<=', $correctedComparisons)
->count();
// Eloquent
$wordCount = Wordlist::where('id', '<=', $correctedComparisons)->count();