PHP 8.3.4 Released!

ReflectionGenerator::getExecutingGenerator

(PHP 7, PHP 8)

ReflectionGenerator::getExecutingGeneratorGets the executing Generator object

Description

public ReflectionGenerator::getExecutingGenerator(): Generator

Get the executing Generator object

Parameters

This function has no parameters.

Return Values

Returns the currently executing Generator object.

Examples

Example #1 ReflectionGenerator::getExecutingGenerator() example

<?php

class GenExample
{
public function
gen()
{
yield
1;
}
}

$gen = (new GenExample)->gen();

$reflectionGen = new ReflectionGenerator($gen);

$gen2 = $reflectionGen->getExecutingGenerator();

var_dump($gen2 === $gen);
var_dump($gen2->current());

The above example will output something similar to:

bool(true)
int(1);

See Also

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top