What would be the most efficient way to select every nth item from a large array? Is there a \'smart\' way to do it or is looping the only way?
Some points to c
Try ArrayIterator::seek()
Also, using one the new Spl datastructures might yield better results than using plain arrays.