PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

ReflectionGenerator::__construct - Constructs a ReflectionGenerator object | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

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

参考


忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「ReflectionGenerator::__construct - Constructs a ReflectionGenerator object」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | ReflectionGenerator::__construct - Constructs a ReflectionGenerator object」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: