update : 2015.11.03
php.shukuma.com

검색:
 
 
Gets the $this value of the generator

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.

예제

Example #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) {
}

참고