这取决于您之后是否要与用户一起使用,还是仅检查是否存在。
如果要使用用户对象(如果存在):
$user = User::where('email', '=', Input::get('email'))->first();if ($user === null) { // user doesn't exist}
如果您只想检查
if (User::where('email', '=', Input::get('email'))->count() > 0) { // user found}
甚至更好
if (User::where('email', '=', Input::get('email'))->exists()) { // user found}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)