ReflectionGenerator::__construct

(PHP 7)

ReflectionGenerator::__constructConstructs a ReflectionGenerator object

Опис

public ReflectionGenerator::__construct ( Generator $generator )

Constructs a ReflectionGenerator object.

Параметри

generator

A generator object.

Значення, що повертаються

Не повертає значень.

Приклади

Приклад #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;

Наведений вище приклад виведе щось подібне до:

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

Прогляньте Також

add a note add a note

User Contributed Notes

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