I have an array that looks something like this:
Array
(
[100] => Array
(
[room_id] => 100
[name] => Town Center
)
[110] => Array
(
[room_id] => 110
[name] => Coffee Shop
[pin_id] => 7146
[pin_x] => 570
[pin_y] => 150
)
)
I was wondering if there was a way that I could obtain a specific value, if the "pin_id" key was there. So for example:
Array
(
[100] => Array
(
[room_id] => 100
[name] => Town Center <-- No "pin_id" so I DON'T need this value
)
[110] => Array
(
[room_id] => 110
[name] => Coffee Shop <-- I want to OBTAIN this value
[pin_id] => 7146 <-- Since the "pin_id" key is here
[pin_x] => 570
[pin_y] => 150
)
)
I've tried using foreach, but it gets to complicated for me. I'm still very new with arrays, and not so familiar with the terminology/functions.