I want to be able to return only the values of a certain key from an array.
Array
(
[0] => Array
(
[LEVEL] => => Array
(
[SCORE] => 10
)
)
[1] => Array
(
[LEVEL] => Array
(
[SCORE] => 40
)
)
)
I'm trying to make the array grab all scores:
Array(10,40)
I can do it easily with a foreach loop, but I'm trying to use an existing php function.