(PHP 5 >= 5.0.0, PHP 7)
  	
    
      
      Move to next entry
    
    
      
      public void  ArrayIterator::next ( void )
    
    
    
    The iterator to the next entry.
Returns: 
    No value is returned.
Examples: 
  
          ArrayIterator::next() example
    	
      
<?php
$arrayobject = new ArrayObject();
$arrayobject[] = 'zero';
$arrayobject[] = 'one';
$iterator = $arrayobject->getIterator();
while($iterator->valid()) {
    echo $iterator->key() . ' => ' . $iterator->current() . "\n";
    $iterator->next();
}
?>
 The above example will output:
0 => zero 1 => one
Please login to continue.