I am trying to get a value from an array of arrays:
$headers = {array} [10]
0 = {array} [2]
1 = {array} [2]
2 = {array} [2]
3 = {array} [2]
4 = {array} [2]
5 = {array} [2]
6 = {array} [2]
7 = {array} [2]
8 = {array} [2]
name = "X"
value = "something"
9 = {array} [2]
So I want to find the value where the name is X?
I tried array_search(), maybe I need to flatten the array?
Cheers,
Mick