Empty Objects
editEmpty Objects
editThe Elasticsearch API uses empty JSON objects in several locations, and this can cause problems for PHP. Unlike other languages, PHP does not have a "short" notation for empty objects and so many developers are unaware how to specify an empty object.
Consider adding a Highlight to a query:
{ "query" : { "match" : { "content" : "quick brown fox" } }, "highlight" : { "fields" : { "content" : {} } } }
The problem is that PHP will automatically convert "content" : {}
into "content" : []
, which is no longer valid
Elasticsearch DSL. We need to tell PHP that the empty object is explicitly an object, not an array. To define this
query in PHP, you would do:
$params['body'] = array( 'query' => array( 'match' => array( 'content' => 'quick brown fox' ) ), 'highlight' => array( 'fields' => array( 'content' => (object) array() ) ) ); $results = $client->search($params);
We cast an empty array to an object to represent an empty object. The JSON will now encode correctly. |
By using an empty array cast to an object, we can force the json_encode
parser to correctly output an empty object, instead
of an empty array. Sadly, this verbose solution is the only way to acomplish the goal in PHP…there is no "short"
version of an empty object.