ReflectionGenerator::__construct
(PHP 7, PHP 8)
ReflectionGenerator::__construct — Constructs a ReflectionGenerator object
Beschreibung
Constructs a ReflectionGenerator object.
Parameter-Liste
-
generator
-
A generator object.
Beispiele
Beispiel #1 ReflectionGenerator::__construct() example
<?php
function gen()
{
yield 1;
}
$gen = gen();
$reflectionGen = new ReflectionGenerator($gen);
echo <<< output
{$reflectionGen->getFunction()->name}
Line: {$reflectionGen->getExecutingLine()}
File: {$reflectionGen->getExecutingFile()}
output;
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
gen Line: 5 File: /path/to/file/example.php
Siehe auch
- ReflectionGenerator::getFunction() - Gets the function name of the generator
- ReflectionGenerator::getExecutingLine() - Gets the currently executing line of the generator
- ReflectionGenerator::getExecutingFile() - Gets the file name of the currently executing generator