I'm trying to extract only the 'phone' and 'number' values from the array but can't succeed. Here is the array:
Array
(
[success] => true
[data] => Array
(
[item] => Array
(
[0] => Array
(
[Weight] => 0.20
[Number] => 56885803183
[Phone] => 999999999999
)
[1] => Array
(
[Weight] => 0.20
[Number] => 455455183
[Phone] => 956546569999
)
[2] => Array
(
[Weight] => 0.20
[Number] => 455455183
[Phone] => 956546569999
)
)
)
)
I just can't figure out how to deal with the nested numeric keys so any help would be greatly appreciated.
foreach($array as $key => $val) {...}
isn't working.