ReflectionGenerator::__construct
PHP function
Edit on GitHub ✎
(PHP 7, PHP 8)
Constructs a ReflectionGenerator object
Description
ReflectionGenerator::__construct(Generator $generator)
Constructs a ReflectionGenerator object.
Parameters
generatorA generator object.
Examples
ReflectionGenerator::__construct example
php
<?php
function gen()
{
yield 1;
}
$gen = gen();
$reflectionGen = new ReflectionGenerator($gen);
echo <<< output
{$reflectionGen->getFunction()->name}
Line: {$reflectionGen->getExecutingLine()}
File: {$reflectionGen->getExecutingFile()}
output;The above example will output something similar to:
output
gen
Line: 5
File: /path/to/file/example.phpSee Also
ReflectionGenerator::getFunctionReflectionGenerator::getExecutingLineReflectionGenerator::getExecutingFile