略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: ReflectionGenerator::__construct

2024-04-27

ReflectionGenerator::__construct

(PHP 7, PHP 8)

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 noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/reflectiongenerator.construct.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3