I\'m working on a program that uses PHP\'s internal array pointers to iterate along a multidimensional array. I need to get an element from the current row, and I\'ve been d
Have you tried using one of the iterator classes yet? There might be something in there that does exactly what you want. If not, you can likely get what you want by extending the ArrayObject class.