1// query-dsl/multi-match-query.asciidoc:170
2
3[source, php]
4----
5$params = [
6    'body' => [
7        'query' => [
8            'multi_match' => [
9                'query' => 'Will Smith',
10                'type' => 'best_fields',
11                'fields' => [
12                    'first_name',
13                    'last_name',
14                ],
15                'operator' => 'and',
16            ],
17        ],
18    ],
19];
20$response = $client->search($params);
21----
22