I'm passing some arrays as arguments inside a function. For example:
test($someArray[2][3]);
In that case the function gets the value stored in (2,3) but there is a way to get the keys value (2,3) from inside the function to work with? The function should use the x,y position of the value to do some calculations.
Thanks!