在使用Laravel Eloquent
模型時,咱們可能要判斷取出的結果集是否爲空,但咱們發現直接使用is_null
或empty
是沒法判段它結果集是否爲空的。html
var_dump以後咱們很容易發現,即便取到的空結果集, Eloquent
仍然會返回Illuminate\Database\Eloquent\Collection
對象實例。
其實,Eloquent
已經給咱們封裝幾個判斷方法。laravel
$result = Model::where(...)->get(); //不爲空則 if ($result->first()) { } if (!$result->isEmpty()) { } if ($result->count()) { }
參考網站:http://stackoverflow.com/questions/20563166/eloquent-collection-counting-and-detect-emptypost
轉自:http://douyasi.com/laravel/eloquent_collection_detect_empty.html網站