1// query-dsl/multi-match-query.asciidoc:228
2
3[source, php]
4----
5$params = [
6    'body' => [
7        'query' => [
8            'bool' => [
9                'should' => [
10                    [
11                        'match' => [
12                            'title' => 'quick brown fox',
13                        ],
14                    ],
15                    [
16                        'match' => [
17                            'title.original' => 'quick brown fox',
18                        ],
19                    ],
20                    [
21                        'match' => [
22                            'title.shingles' => 'quick brown fox',
23                        ],
24                    ],
25                ],
26            ],
27        ],
28    ],
29];
30$response = $client->search($params);
31----
32