ArrayIterator クラス

(PHP 5, PHP 7)

はじめに

このイテレータは、配列やオブジェクトを反復処理する際に 値やキーをリセットしたり修正したりすることができます。

同じ配列を何度も反復処理したい場合は、 ArrayObject のインスタンスとそれを参照する ArrayIterator のインスタンスを作成し、 foreach を使用するか getIterator() メソッドを手動でコールします。

クラス概要

ArrayIterator implements ArrayAccess , SeekableIterator , Countable , Serializable {
/* メソッド */
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 ( string $index ) : void
public offsetGet ( string $index ) : mixed
public offsetSet ( string $index , string $newval ) : void
public offsetUnset ( string $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
}

目次