Here is an array example I have.
Array
(
[0] => Array
(
[0] => a
[1] => b
[2] => c
)
)
I need the order of the sub array to be reversed. I know the function I need to use is "reverse_array" but I do not know how to apply it to an array within an array.