在使用Laravel Eloquent模型时,我们可能要判断取出的结果集是否为空,但我们发现直接使用is_nullempty是无法判段它结果集是否为空的。

var_dump之后我们很容易发现,即使取到的空结果集, Eloquent仍然会返回Illuminate\Database\Eloquent\Collection对象实例。

其实,Eloquent已经给我们封装几个判断方法。

$result = Model::where(...)->get();//不为空则if ($result->first()) { } if (!$result->isEmpty()) { }if ($result->count()) { }

参考网站:

 转自: