ReflectionGenerator::getThis
(PHP 7, PHP 8)
ReflectionGenerator::getThis — ジェネレータの $this
の値を取得する
パラメータ
この関数にはパラメータはありません。
戻り値
$this
の値を返します。
ジェネレータがクラスコンテキストの中で作られていない場合は null
を返します。
例
例1 ReflectionGenerator::getThis() の例
<?php
class GenExample
{
public function gen()
{
yield 1;
}
}
$gen = (new GenExample)->gen();
$reflectionGen = new ReflectionGenerator($gen);
var_dump($reflectionGen->getThis());
上の例の出力は、 たとえば以下のようになります。
object(GenExample)#3 (0) { }
参考
- ReflectionGenerator::getFunction() - ジェネレータの関数名を取得する
- 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