ArrayIterator 類

ArrayIterator 類

(PHP 5, PHP 7, PHP 8)

簡介

這個迭代器允許在遍歷陣列和對像時刪除和更新值與鍵。

當你想多次遍歷相同陣列時你需要實例化 ArrayObject,然後讓這個實例建立一個 ArrayIterator 實例。 當你想遍歷相同陣列時多次你需要實例 ArrayObject 並且讓這個實例建立一個 ArrayIterator 實例,然後使用 foreach 或者手動呼叫 getIterator() 方法。

類摘要

class ArrayIterator implements SeekableIterator, ArrayAccess, Serializable, Countable {
/* 常量 */
const int STD_PROP_LIST = 1;
const int ARRAY_AS_PROPS = 2;
/* 方法 */
public __construct(array|object $array = [], int $flags = 0)
public append(mixed $value): void
public asort(int $flags = SORT_REGULAR): bool
public count(): int
public current(): mixed
public getArrayCopy(): array
public getFlags(): int
public key(): string|int|null
public ksort(int $flags = SORT_REGULAR): bool
public natcasesort(): bool
public natsort(): bool
public next(): void
public offsetExists(mixed $key): bool
public offsetGet(mixed $key): mixed
public offsetSet(mixed $key, mixed $value): void
public offsetUnset(mixed $key): void
public rewind(): void
public seek(int $offset): void
public serialize(): string
public setFlags(int $flags): void
public uasort(callable $callback): bool
public uksort(callable $callback): bool
public unserialize(string $data): void
public valid(): bool
}

預定義常量

ArrayIterator 標記

ArrayIterator::STD_PROP_LIST

Properties of the object have their normal functionality when accessed as list (var_dump, foreach, etc.).

ArrayIterator::ARRAY_AS_PROPS

可以通過屬性訪問條目(讀寫都支援)。

目錄

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *