laravel search multiple words separated by space

前端 未结 7 1919
鱼传尺愫
鱼传尺愫 2020-12-29 08:57

I am new to laravel query builder, I want to search multiple words entered in an input field for example if I type \"jhon doe\" I want to get any column that contains jhon o

相关标签:
7条回答
  • 2020-12-29 09:30

    You can use this package https://github.com/nicolaslopezj/searchable

    or just do this, if you don't want to use package

    $keywordRaw = "jhon doe";
    $users = User::where('first_name', 'LIKE', $keywordRaw.'%')
    ->orWhere('first_name', 'LIKE', '% '.$keywordRaw.'%')
    ->get();
    
    0 讨论(0)
  • 2020-12-29 09:33
    $string = 'john  doe';
    
    // split on 1+ whitespace & ignore empty (eg. trailing space)
    $searchValues = preg_split('/\s+/', $string, -1, PREG_SPLIT_NO_EMPTY); 
    
    $users = User::where(function ($q) use ($searchValues) {
      foreach ($searchValues as $value) {
        $q->Where('name', 'like', "%{$value}%");
      }
    })->get();
    

    Using 'orWhere' will get you results for each keyword not results for keyword1 + keyword2...So all depends on what your looking for

    0 讨论(0)
  • 2020-12-29 09:37

    Have you considered using a FULLTEXT index on your first_name column?

    You can create this index using a Laravel migration, although you need to use an SQL statement:

    DB::statement('ALTER TABLE users ADD FULLTEXT(first_name);');
    

    You can then run quite advanced searches against this field, like this:

    $keywordRaw = "john doe";
    $keywords   = explode(' ', $keywordRaw);
    $users   = User::select("*")
                  ->whereRaw("MATCH (first_name)
                              against (? in boolean mode)",[$keywords])
                  ->get();
    

    That will match records containing either the words "john" or "doe"; note that this approach will match on whole words, rather than substrings (which can be the case if you use LIKE).

    If you want to find records containing all words, you should precede each keyword with a '+', like this:

    $keywords   = '+'.explode(' +', $keywordRaw);
    

    You can even sort by relevance, although this is probably overkill for your needs (and irrelevant for "all" searches). Something like this:

    $users = User::select("*")
                   ->selectRaw("MATCH (first_name)
                                against (? in boolean mode)
                                AS relevance",[$keywords])
                   ->whereRaw("MATCH (first_name)
                               against (? in boolean mode)",[$keywords])
                   ->orderBy('relevance','DESC')
                   ->get();
    

    There is a good article that covers this general approach here:

    http://www.hackingwithphp.com/9/3/18/advanced-text-searching-using-full-text-indexes

    0 讨论(0)
  • 2020-12-29 09:39
     $keywordRaw = "jhon doe";
        $key = explode(' ',$keywordRaw)
        $users = User::select('users.*')
        ->whereIn('first_name',$key);
    

    This would work.the whereIn would search for first name from the keywords you entered.

    0 讨论(0)
  • 2020-12-29 09:45

    Try this..

       $searchQuery = "jhon doe"; 
    $searchTerms = explode(" ", $searchQuery); // Split the words
    $users = User::whereIn('FirstName', $searchTerms)->get();
    print_r($users);
    
    0 讨论(0)
  • 2020-12-29 09:48

    This is how you do it with Query\Builder, but first some additional notes:

    // user can provide double space by accident, or on purpose:
    $string = 'john  doe';
    
    // so with explode you get this:
    explode(' ', $string);
    array(
      0 => 'john',
      1 => '',
      2 => 'doe'
    )
    
    // Now if you go with LIKE '%'.value.'%', you get this:
    select * from table where name like '%john%' or name like '%%' or ...
    

    That said, you obviously can't rely on explode because in the above case you would get all the rows.

    So, this is what you should do:

    $string = 'john  doe';
    
    // split on 1+ whitespace & ignore empty (eg. trailing space)
    $searchValues = preg_split('/\s+/', $string, -1, PREG_SPLIT_NO_EMPTY); 
    
    $users = User::where(function ($q) use ($searchValues) {
      foreach ($searchValues as $value) {
        $q->orWhere('name', 'like', "%{$value}%");
      }
    })->get();
    

    There is closure in the where because it is a good practice to wrap your or where clauses in parentheses. For example if your User model used SoftDeletingScope and you would not do what I suggested, your whole query would be messed up.

    0 讨论(0)
提交回复
热议问题