(PHP 7)
ReflectionGenerator::__construct — Constructs a ReflectionGenerator object
public ReflectionGenerator::__construct ( Generator $generator )
Constructs a ReflectionGenerator object.
generator
A generator object.
No value is returned.
Example #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; The above example will output something similar to:
gen Line: 5 File: /path/to/file/example.php
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/reflectiongenerator.construct.php