blob: f9ecc8e90eb439f454f393b2afd37bbcbc6ab401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
--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
|