PHP : How to parse ElasticSearch JSON ?
ElasticSearch returns search result in JSON format. To parse the items from the search result in PHP first you need to decode the JSON data
$decoded = json_decode($json_data);
and from the decoded data, you can scan the data array for the granular information. For example, if I wanted the title
from the returned search result
I would do something like this :
<?php
$results = $decoded->hits->hits;
foreach ($results as $item) {
$id = $item->_id;
$title = $item->_source->title; // get the title
$short_description = $item->_source->short_description;
}
?>
NOTE : In case the search result from ElasticSearch is not recognize as JSON format.... you can always use json_encode
function such as the example code:
$json_data = json_encode($this->elasticsearch->advancedquery("index_type", $searchquery));
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+11k Golang : Read until certain character to break for loop
+17.7k Golang : Iterate linked list example
+14.5k How to automatically restart your crashed Golang server
+7.6k Golang : get the current working directory of a running program
+5.1k Golang : Issue HTTP commands to server and port example
+11.9k Golang : Clean formatting/indenting or pretty print JSON result
+11.3k Golang : Post data with url.Values{}
+17.6k Golang : [json: cannot unmarshal object into Go value of type]
+22.6k Golang : Set and Get HTTP request headers example
+14.5k Golang : How to check if your program is running in a terminal
+9.9k Golang : Get escape characters \u form from unicode characters
+19.7k Golang : Archive directory with tar and gzip