Php/docs/class.generator

From Get docs

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

Introduction

Generator objects are returned from generators.

Caution Generator objects cannot be instantiated via new.


Class synopsis


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

}

Table of Contents