12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- --TEST--
- ReflectionGenerator basic test
- --FILE--
- <?php
- function foo() {
- yield;
- }
- $gens = [
- (new class() {
- function a() {
- yield from foo();
- }
- })->a(),
- (function() {
- yield;
- })(),
- foo(),
- ];
- foreach ($gens as $gen) {
- var_dump($gen);
- $gen->valid(); // start Generator
- $ref = new ReflectionGenerator($gen);
- var_dump($ref->getTrace());
- var_dump($ref->getExecutingLine());
- var_dump($ref->getExecutingFile());
- var_dump($ref->getExecutingGenerator());
- var_dump($ref->getFunction());
- var_dump($ref->getThis());
- }
- ?>
- --EXPECTF--
- object(Generator)#2 (0) {
- }
- array(1) {
- [0]=>
- array(4) {
- ["file"]=>
- string(%d) "%s"
- ["line"]=>
- int(%d)
- ["function"]=>
- string(3) "foo"
- ["args"]=>
- array(0) {
- }
- }
- }
- int(%d)
- string(%d) "%sReflectionGenerator_basic.%s"
- object(Generator)#6 (0) {
- }
- object(ReflectionMethod)#8 (2) {
- ["name"]=>
- string(1) "a"
- ["class"]=>
- string(%d) "class@anonymous%s"
- }
- object(class@anonymous)#1 (0) {
- }
- object(Generator)#4 (0) {
- }
- array(0) {
- }
- int(%d)
- string(%d) "%sReflectionGenerator_basic.%s"
- object(Generator)#4 (0) {
- }
- object(ReflectionFunction)#7 (1) {
- ["name"]=>
- string(9) "{closure}"
- }
- NULL
- object(Generator)#5 (0) {
- }
- array(0) {
- }
- int(%d)
- string(%d) "%sReflectionGenerator_basic.%s"
- object(Generator)#5 (0) {
- }
- object(ReflectionFunction)#8 (1) {
- ["name"]=>
- string(3) "foo"
- }
- NULL
|