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]
echo $yourArray['fees'][30]->label
It's not just an array... it's an array with an object in it. Use the -> to access object properties.
->