ReflectionGenerator::getThis

(PHP 7)

ReflectionGenerator::getThisGets the $this value of the generator

Опис

public object ReflectionGenerator::getThis ( void )

Get the $this value that the generator has access to.

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

Returns the $this value, or NULL if the generator was not created in a class context.

Приклади

Приклад #1 ReflectionGenerator::getThis() example

<?php

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

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

$reflectionGen = new ReflectionGenerator($gen);

var_dump($reflectionGen->getThis());

Наведений вище приклад виведе щось подібне до:

object(GenExample)#3 (0) {
}

Прогляньте Також

add a note add a note

User Contributed Notes

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