ReflectionGenerator::getFunction
(PHP 7, PHP 8)
ReflectionGenerator::getFunction — ジェネレータの関数名を取得する
説明
ReflectionFunctionAbstract から派生したクラスを返すことによって、 取得したジェネレータの関数名を取得します。
パラメータ
この関数にはパラメータはありません。
戻り値
ReflectionFunctionAbstract クラスを返します。 これは 関数の場合は ReflectionFunction ですし、 メソッドの場合は ReflectionMethod になります。
例
例1 ReflectionGenerator::getFunction() の例
<?php
function gen()
{
yield 1;
}
$gen = gen();
$reflectionGen = new ReflectionGenerator($gen);
var_dump($reflectionGen->getFunction());
上の例の出力は、 たとえば以下のようになります。
object(ReflectionFunction)#3 (1) { ["name"]=> string(3) "gen" }
参考
- ReflectionGenerator::getThis() - ジェネレータの $this の値を取得する
- ReflectionGenerator::getTrace() - 実行中のジェネレータのトレースを取得する
+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