Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>You can access the inactive tags array with (assuming $myArray contains the array)</p> <pre><code>$myArray['inactiveTags']; </code></pre> <p>Your question doesn't seem to go beyond accessing the contents of the inactiveTags key so I can only speculate with what your final goal is.</p> <p>The first key:value pair in the inactiveTags array is </p> <pre><code>array ('195' =&gt; array( 'id' =&gt; 195, 'tag' =&gt; 'auto') ) </code></pre> <p>To access the tag value, you would use</p> <pre><code>$myArray['inactiveTags'][195]['tag']; // auto </code></pre> <p>If you want to loop through each inactiveTags element, I would suggest:</p> <pre><code>foreach($myArray['inactiveTags'] as $value) { print $value['id']; print $value['tag']; } </code></pre> <p>This will print all the id and tag values for each inactiveTag</p> <p>Edit:: For others to see, here is a var_dump of the array provided in the question since it has not readible</p> <pre> array 'languages' => array 76 => array 'id' => string '76' (length=2) 'tag' => string 'Deutsch' (length=7) 'targets' => array 81 => array 'id' => string '81' (length=2) 'tag' => string 'Deutschland' (length=11) 'tags' => array 7866 => array 'id' => string '7866' (length=4) 'tag' => string 'automobile' (length=10) 17800 => array 'id' => string '17800' (length=5) 'tag' => string 'seat leon' (length=9) 17801 => array 'id' => string '17801' (length=5) 'tag' => string 'seat leon cupra' (length=15) 'inactiveTags' => array 195 => array 'id' => string '195' (length=3) 'tag' => string 'auto' (length=4) 17804 => array 'id' => string '17804' (length=5) 'tag' => string 'coupès' (length=6) 17805 => array 'id' => string '17805' (length=5) 'tag' => string 'fahrdynamik' (length=11) 901 => array 'id' => string '901' (length=3) 'tag' => string 'fahrzeuge' (length=9) 17802 => array 'id' => string '17802' (length=5) 'tag' => string 'günstige neuwagen' (length=17) 1991 => array 'id' => string '1991' (length=4) 'tag' => string 'motorsport' (length=10) 2154 => array 'id' => string '2154' (length=4) 'tag' => string 'neuwagen' (length=8) 10660 => array 'id' => string '10660' (length=5) 'tag' => string 'seat' (length=4) 17803 => array 'id' => string '17803' (length=5) 'tag' => string 'sportliche ausstrahlung' (length=23) 74 => array 'id' => string '74' (length=2) 'tag' => string 'web 2.0' (length=7) 'categories' => array 16082 => array 'id' => string '16082' (length=5) 'tag' => string 'Auto & Motorrad' (length=15) 51 => array 'id' => string '51' (length=2) 'tag' => string 'Blogosphäre' (length=11) 66 => array 'id' => string '66' (length=2) 'tag' => string 'Neues & Trends' (length=14) 68 => array 'id' => string '68' (length=2) 'tag' => string 'Privat' (length=6) </pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload