在使用 Laravel Eloquent
模型時,咱們可能要判斷取出的結果集是否爲空,但咱們發現直接使用 is_null
或 empty
是沒法判段它結果集是否爲空的。html
dd以後咱們很容易發現,即便取到的空結果集, Eloquent
仍然會返回 Illuminate\Database\Eloquent\Collection
對象實例。
其實,Eloquent
已經給咱們封裝幾個判斷方法。spa
$result = Model::where(...)->get(); //不爲空則
if ($result->first()) { } if (!$result->isEmpty()) { } if ($result->count()) { }
轉自:http://www.cnblogs.com/zhangwei595806165/p/5831539.htmlcode