ReflectionGenerator::getExecutingFile

(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:

ReflectionGenerator::getExecutingLine() -

ReflectionGenerator::getExecutingGenerator() -

doc_php
2016-02-24 16:13:52
Comments
Leave a Comment

Please login to continue.