parent root
PHP: Generator::valid - Manual
PHP 7.2.23 Release Announcement

Generator::valid

(PHP 5 >= 5.5.0, PHP 7)

Generator::validCheck if the iterator has been closed

Description

public Generator::valid ( void ) : bool

Parameters

This function has no parameters.

Return Values

Returns FALSE if the iterator has been closed. Otherwise returns TRUE.

add a noteadd a note

User Contributed Notes 1 note

up
0
Igor Frolov
4 months ago
Notice if you call it with open empty generator, it will close while checking.
To Top
parent root