1234567891011121314151617181920212223242526 |
- // query-dsl/multi-match-query.asciidoc:275
- [source, php]
- ----
- $params = [
- 'body' => [
- 'query' => [
- 'dis_max' => [
- 'queries' => [
- [
- 'match_phrase_prefix' => [
- 'subject' => 'quick brown f',
- ],
- ],
- [
- 'match_phrase_prefix' => [
- 'message' => 'quick brown f',
- ],
- ],
- ],
- ],
- ],
- ],
- ];
- $response = $client->search($params);
- ----
|