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
+8.8k Golang : Sort lines of text example
+5.3k Golang *File points to a file or directory ?
+17.7k Golang : Simple client server example
+17.6k Golang : How to make a file read only and set it to writable again?
+15.4k Chrome : ERR_INSECURE_RESPONSE and allow Chrome browser to load insecure content
+19.3k Golang : Get current URL example
+10.9k Golang : Generate random elements without repetition or duplicate
+11.8k Golang : Determine if time variables have same calendar day
+11k Google Maps URL parameters configuration
+7.1k Golang : Null and nil value
+19.9k Golang : Determine if directory is empty with os.File.Readdir() function
+11.5k Golang : Convert(cast) float to int