码迷,mamicode.com
首页 > 其他好文 > 详细

Laravel Eloquent 判断取出的结果集是否为空

时间:2016-11-21 19:55:07      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:对象   follow   where   无法   data   result   取出   ons   封装   

在使用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()) { }

参考网站:http://stackoverflow.com/questions/20563166/eloquent-collection-counting-and-detect-empty

Laravel Eloquent 判断取出的结果集是否为空

标签:对象   follow   where   无法   data   result   取出   ons   封装   

原文地址:http://www.cnblogs.com/wuoshiwzm/p/6086162.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!