#include "php_arr.h" void php_iterator::operator++(int ignore);
Description: Move the iterator to the next element in the php_array. If it was previously on the last element the iterator will no longer be valid after this operation. The client should always call php_iterator::done before trying to access data at the new iterator position. The ignore parameter just indicates that this is a postfix expression.