Generator クラス

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

はじめに

Generatorジェネレータ が返すオブジェクトです。

警告

Generator オブジェクトのインスタンスは new では作れません。

クラス概要

finalclassGeneratorimplementsIterator {
publiccurrent(): mixed
publicgetReturn(): mixed
publickey(): mixed
publicnext(): void
publicrewind(): void
publicsend(mixed$value): mixed
publicthrow(Throwable$exception): mixed
publicvalid(): bool
public__wakeup(): void
}

参考

オブジェクトの反復処理 も参照ください。

目次

To Top