(PHP 7)
Gets the file name of the currently executing generator
public string ReflectionGenerator::getExecutingFile ( void )
Get the full path and file name of the currently executing generator.
Returns:
Returns the full path and file name of the currently executing generator.
Examples:
ReflectionGenerator::getExecutingFile() example
<?php class GenExample { public function gen() { yield 1; } } $gen = (new GenExample)->gen(); $reflectionGen = new ReflectionGenerator($gen); echo "File: {$reflectionGen->getExecutingFile()}";
The above example will output something similar to:
File: /path/to/file/example.php
See also:
Please login to continue.