I'm trying to access an array within another array (basically, a two dimensional array). However, the usual way of doing this ($myarray[0][0]) doesn't work for me. The reason is because I want to create a recursive function which, in each call, should dive deeper and deeper into a array (like, on first call it should look at $myarray[0], on second call it should look at $myarray[0][0] and so on).
Is there any alternative way of accessing an array within array?
Thanks.
a(308)
got the$a[3][0][8]
, and it worked since the indexes werent higher than 9. But basically there's no alternative solution. – Rápli András Dec 2 '13 at 18:38