ReflectionGenerator::getExecutingGenerator

(PHP 7, PHP 8)

ReflectionGenerator::getExecutingGeneratorGets the executing Generator object

Descrição

public ReflectionGenerator::getExecutingGenerator(): Generator

Get the executing Generator object

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Returns the currently executing Generator object.

Exemplos

Exemplo #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());

O exemplo acima produzirá algo semelhante a:

bool(true)
int(1);

Veja Também

add a note

User Contributed Notes

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