亲宝软件园·资讯

展开

Laravel中的where高级使用方法 Laravel中的where高级使用方法实例讲解

Turbo97 人气:8
想了解Laravel中的where高级使用方法实例讲解的相关内容吗,Turbo97在本文为您仔细讲解Laravel中的where高级使用方法的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Laravel中的where高级使用方法,where高级使用方法,下面大家一起来学习吧。

有时候项目中需要进行多个字段搜索就可以用到此方法

$username = '';// 收货人姓名
$hospital_id = ''; // 医院id
# 判断是否有姓名搜索
if (!empty($request->username)) {
  $username = $request->username;
}
# 判断是否有医院搜索
if (!empty($request->hospital_id)) {
  $hospital_id = $request->hospital_id;
}
# 执行
$data = DB::table('test')
->where(function($query)use($username){
	# 进行判断
  if (!empty($username)) {
    $query->where('username','Like',"%$username%");
  }
})
->where(function($query)use($hospital_id){
	# 进行判断
  if (!empty($hospital_id)) {
    $query->where('hospital_id','=',$hospital_id);
  }
})
->get()
->toArray();
dd($data)

加载全部内容

相关教程
猜你喜欢
用户评论