I want to extract item 6 and item 9 from an array, I can get ingle values out using the [0] singled indexed row
But looking for the vector this does not work
$vector1 = ($result['item3']['item6'][‘item9’]);
What is the best way to extract the arrays for item 6 and item 9 ?
Array
([0] => Array
([item1] => 123
[item2] => 345
[item3] => Array
([0] => Array
([item4] => Array
([item6] => 567
[item7] => 678
[item8] => Array
([0] => Array
([item9] => abc)
)
)
)
)
)
)