ReflectionGenerator::isClosed

(PHP 8 >= 8.4.0)

ReflectionGenerator::isClosedChecks if execution finished

Açıklama

public ReflectionGenerator::isClosed(): bool

Returns whether the execution reached the end of the function, a return statement or if an exception was thrown.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

Returns whether the generator finished executing.

Örnekler

Örnek 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());

?>

Yukarıdaki örneğin çıktısı:

a
bool(false)
a
bool(false)
bool(true)
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top