Twistar
Twistar

Reputation: 782

Access elements inside multidimensional array

I have this multidimensional array in PHP:

array(4) { 
["took"]=> int(2) 
["timed_out"]=> bool(false) 
["_shards"]=> array(3) { 
    ["total"]=> int(5)
    ["successful"]=> int(5)
    ["failed"]=> int(0) 
} 
["hits"]=> array(3) { 
    ["total"]=> int(3) 
    ["max_score"]=> float(2.3578677) 
    ["hits"]=> array(1) { 
        [0]=> array(5) { 
            ["_index"]=> string(13) "telephonebook" 
            ["_type"]=> string(6) "person" 
            ["_id"]=> string(22) "M5vJJZasTGG2L_RbCQZcKA" 
            ["_score"]=> float(2.3578677) 
            ["_source"]=> array(8) { 
                ["Mob"]=> string(19) "XXX" 
                ["Title"]=> string(13) "Analyst" 
                ["Department"]=> string(8) "Analysis" 
                ["Country"]=> string(6) "Sweden" 
                ["Tlf"]=> string(0) "" 
                ["Name"]=> string(16) "XXX" 
                ["Email"]=> string(29) "[email protected]" 
                ["thumbnailPhoto"]=> string(0) "" 
            } 
        } 
    } 
} 

}

The array has several "hits" inside "hits" and I want to loop trough and print out the stuff inside "_source". I have tried a few different approaches but I cant figure out any way to do this. Please help me.

Upvotes: 0

Views: 42

Answers (4)

silkfire
silkfire

Reputation: 25935

Try this:

   foreach ($array['hits']['hits'] as $hit) {
      foreach ($hit['_source'] as $source) {
         echo $source, '<br>';
      }
   }

Upvotes: 1

chandresh_cool
chandresh_cool

Reputation: 11830

Try this

foreach ($arr['hits']['hits'] as $val) 
{
   echo $val['_source']['Mob'];

}

like this

Upvotes: 1

Ivo Pereira
Ivo Pereira

Reputation: 3500

I think this may handle it for you. Replace $the_array_you_provided with your "main" array variable (you've not specified it in the post).

$hits = $the_array_you_provided['hits']['hits'];

foreach ($hits as $hit) {
    echo $hit['_source']['Title'];

    //print everything in the array
    //print_r($hit['_source']);
}

Any help feel free to ask.

Upvotes: 1

John Conde
John Conde

Reputation: 219794

foreach ($array['hits']['hits'][0]['_source'] as $key => $value) {
    //do stuff
}

Upvotes: 2

Related Questions