ReflectionGenerator::__construct

(PHP 7, PHP 8)

ReflectionGenerator::__constructConstructs a ReflectionGenerator object

Descrição

public ReflectionGenerator::__construct(Generator $generator)

Constructs a ReflectionGenerator object.

Parâmetros

generator

A generator object.

Exemplos

Exemplo #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;

O exemplo acima produzirá algo semelhante a:

gen
Line: 5
File: /path/to/file/example.php

Veja Também

add a note add a note

User Contributed Notes

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