(PHP 8 >= 8.4.0)
ReflectionGenerator::isClosed — Checks if execution finished
public ReflectionGenerator::isClosed(): bool
Returns whether the execution reached the end of the function, a return statement or if an exception was thrown.
This function has no parameters.
Returns whether the generator finished executing.
Example #1 ReflectionGenerator::isClosed() example
<?php
function gen()
{
yield 'a';
yield 'a';
}
$gen = gen();
$reflectionGen = new ReflectionGenerator($gen);
foreach ($gen as $value) {
echo $value, PHP_EOL;
var_dump($reflectionGen->isClosed());
}
var_dump($reflectionGen->isClosed());
?> The above example will output:
a bool(false) a bool(false) bool(true)
© 1997–2025 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/reflectiongenerator.isclosed.php