La clase ArrayIterator

(PHP 5, PHP 7)

Introducción

Este iterador permite eliminar y modificar valores y claves cuando se recorren arrays y objetos.

Cuando se quiere iterar sobre el mismo array varias veces, se necesita instanciar ArrayObject y dejarle que cree instancias ArrayIterator que hacen referencia a la misma usando foreach o llamando a su método getIterator() de forma manual.

Sinopsis de la Clase

ArrayIterator implements ArrayAccess , SeekableIterator , Countable , Serializable {
/* Constantes */
const integer STD_PROP_LIST = 1 ;
const integer ARRAY_AS_PROPS = 2 ;
/* Métodos */
public append ( mixed $value ) : void
public asort ( void ) : void
public __construct ([ mixed $array = array() [, int $flags = 0 ]] )
public count ( void ) : int
public current ( void ) : mixed
public getArrayCopy ( void ) : array
public getFlags ( void ) : void
public key ( void ) : mixed
public ksort ( void ) : void
public natcasesort ( void ) : void
public natsort ( void ) : void
public next ( void ) : void
public offsetExists ( mixed $index ) : bool
public offsetGet ( mixed $index ) : mixed
public offsetSet ( mixed $index , mixed $newval ) : void
public offsetUnset ( mixed $index ) : void
public rewind ( void ) : void
public seek ( int $position ) : void
public serialize ( void ) : string
public setFlags ( string $flags ) : void
public uasort ( string $cmp_function ) : void
public uksort ( string $cmp_function ) : void
public unserialize ( string $serialized ) : string
public valid ( void ) : bool
}

Constantes predefinidas

ArrayIterator Flags

ArrayIterator::STD_PROP_LIST

Las propiedades del objeto tienen su funcionalidad normal cuando se accede a ellas como lista (var_dump, foreach, etc.).

ArrayIterator::ARRAY_AS_PROPS

Se puede acceder a las entradas como propiedades (lectura y escritura).

Tabla de contenidos