I\'m trying to get this data [label] => For Rent from a multi-dimensional array. Here is my array
[label] => For Rent
Array ( [listing_id] => 0 [fields]
You can access any value of array by their keys. simply access For Rent like this :-
For Rent
echo $arrayName['fees'][30]->label
This will display For Rent like ( An Arrow operator because to access an object attribute you have to use this )