ReflectionGenerator::__construct

ReflectionGenerator::__construct

(PHP 7)

ReflectionGenerator::__constructConstructs a ReflectionGenerator object

Description

public ReflectionGenerator::__construct ( Generator $generator )

Constructs a ReflectionGenerator object.

Parameters

generator

A generator object.

Return Values

No value is returned.

Examples

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

See Also

© 1997–2017 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://secure.php.net/manual/en/reflectiongenerator.construct.php

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部