Generator class

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


소개

Generator 객체는 Generator에서 반환됩니다.

주의 Generator 개체는 new를 통해 인스턴스화할 수 없습니다.


인터페이스 개요

                  
final class Generator implements Iterator {
  /* Methods */
  public current(): mixed
  public getReturn(): mixed
  public key(): mixed
  public next(): void
  public rewind(): void
  public send(mixed $value): mixed
  public throw(Throwable $exception): mixed
  public valid(): bool
  public __wakeup(): void
}
                  
                

기타

객체 반복도 참조하십시오.


목차