ReflectionGenerator::__construct
(PHP 7, PHP 8)
ReflectionGenerator::__construct — ReflectionGenerator オブジェクトを構築する
パラメータ
generator
-
ジェネレータオブジェクト
例
例1 ReflectionGenerator::__construct() の例
<?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::getFunction() - ジェネレータの関数名を取得する
- ReflectionGenerator::getExecutingLine() - 現在実行中のジェネレータの行を取得する
- ReflectionGenerator::getExecutingFile() - 現在実行中のジェネレータのファイル名を取得する
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google