在使用Laravel Eloquent
模型时,我们可能要判断取出的结果集是否为空,但我们发现直接使用is_null
或empty
是无法判段它结果集是否为空的。
var_dump之后我们很容易发现,即使取到的空结果集, Eloquent
仍然会返回IlluminateDatabaseEloquentCollection
对象实例。
其实,Eloquent
已经给我们封装几个判断方法。
$result = Model::where(...)->get();
//不为空则
if ($result->first()) { }
if (!$result->isEmpty()) { }
if ($result->count()) { }