It sounds like n8grndr1087 is coming from a C background where looping through an array with pointers is faster than accessing by index, compiler optimisations aside.
Frankly, in PHP, I do not think that iterators will provide anything more than a negligible speed improvement over accessing an array by index. It might even be a little slower. Chances are the time will be dominated by things like network latency, database and file access, and printing output.