I just want to return an array value of an array by knowing it's position but not the key.
array(
[807]=> array(
[0] => "test",
[1] => "test2"
),
[808]=> array(
[0] => "test",
[1] => "test2"
),
[809]=> array(
[0] => "test",
[1] => "test2"
),
[810]=> array(
[0] => "test",
[1] => "test2"
)
)
Let's say i've got the exact positions i want to check: How do i access array[2] to return array with key 809?
Note: array keys wont be all the time succesive.
Thank you