Generator sınıfı

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

Giriş

Generator nesneleri üreteçlerden döndürülür.

Dikkat

Generator nesneleri new üzerinden örneklenemez.

Sınıf Sözdizimi

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

Ayrıca Bakınız

Ayrıca bkz: Nesne Yineleme

İçindekiler

To Top