다음 튜토리얼 칼럼은 laravel에서 Laravel의 고급 사용법을 소개하는 내용이 필요한 친구들에게 도움이 되길 바랍니다!
$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)
에서 클로저 판단을 수행합니다. 권장 사항: 최근 5개의 Laravel 비디오 튜토리얼
위 내용은 Laravel의 where 고급 사용법 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!