I am trying to understand the behaviour of FilterIterator at This Code, I was trying to understand the action sequences, I didnt understand why if you try to print the current() value it wont work unless you will use next() or rewind() before for example:
// Please take a look at the link before
echo $cull->current(); // wont work
$cull->next(); or $cull->rewind(); then echo $cull->current(); // work
Now i dont know what i have to "Refresh" the "Pointer" to be able to print elements, if can some one explain to me please the action sequences mabye it will become clearer, Thank you all and have a nice day.