ReflectionGenerator::getExecutingFile
(PHP 7, PHP 8)
ReflectionGenerator::getExecutingFile — 現在実行中のジェネレータのファイル名を取得する
パラメータ
この関数にはパラメータはありません。
戻り値
現在実行中のジェネレータのファイル名をフルパスを返します。
例
例1 ReflectionGenerator::getExecutingFile() の例
<?php
class GenExample
{
public function gen()
{
yield 1;
}
}
$gen = (new GenExample)->gen();
$reflectionGen = new ReflectionGenerator($gen);
echo "File: {$reflectionGen->getExecutingFile()}";
上の例の出力は、 たとえば以下のようになります。
File: /path/to/file/example.php
参考
- ReflectionGenerator::getExecutingLine() - 現在実行中のジェネレータの行を取得する
- ReflectionGenerator::getExecutingGenerator() - 実行中の Generator オブジェクトを取得する
+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