<?php $it = new ArrayObject(); $it[] = 'Foo'; $it[] = 'Bar'; reset($it); do { echo current($it), "\n"; echo key($it), "\n"; } while (next($it));
You have javascript disabled. You will not be able to edit any code.