If I have an array like this:
$array = array('something'=>array('more'=>array('id'=> 34)));
Then print_r($array['something']['more']['id'] works fine.
But say the key names might change but the structure wont. How could I reference the same values without knowing the names?
I thought maybe print_r($array[0][1][2] might work, but of course those keys don't exist.