HOME

The Generator class
Predefined Interfaces and Classes
PHP Manual

The Generator class

(PHP 5 >= 5.5.0)

Introduction

Generator objects are returned from generators.

Caution

Generator objects cannot be instantiated via new.

Class synopsis

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

Table of Contents


Predefined Interfaces and Classes
PHP Manual