File: observer_generator_04.phpt

package info (click to toggle)
php8.4 8.4.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208,108 kB
  • sloc: ansic: 1,060,628; php: 35,345; sh: 11,866; cpp: 7,201; pascal: 4,913; javascript: 3,091; asm: 2,810; yacc: 2,411; makefile: 689; xml: 446; python: 301; awk: 148
file content (120 lines) | stat: -rw-r--r-- 2,653 bytes parent folder | download | duplicates (3)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
--TEST--
Observer: Generator with manual traversal
--EXTENSIONS--
zend_test
--INI--
zend_test.observer.enabled=1
zend_test.observer.show_output=1
zend_test.observer.observe_all=1
zend_test.observer.show_return_value=1
--FILE--
<?php
function fooResults() {
    echo 'Starting generator' . PHP_EOL;
    $i = 0;
    while (true) {
        if (yield $i++) break;
    }
}

function doSomething() {
    $generator = fooResults();

    while($generator->current() !== NULL) {
        echo $generator->current() . PHP_EOL;
        if ($generator->current() === 5) {
            $generator->send('Boop');
        }
        $generator->next();
    }

    return 'Done';
}

echo doSomething() . PHP_EOL;
?>
--EXPECTF--
<!-- init '%s' -->
<file '%s'>
  <!-- init doSomething() -->
  <doSomething>
    <!-- init Generator::current() -->
    <Generator::current>
      <!-- init fooResults() -->
      <fooResults>
Starting generator
      </fooResults:0>
    </Generator::current:0>
    <Generator::current>
    </Generator::current:0>
0
    <Generator::current>
    </Generator::current:0>
    <!-- init Generator::next() -->
    <Generator::next>
      <fooResults>
      </fooResults:1>
    </Generator::next:NULL>
    <Generator::current>
    </Generator::current:1>
    <Generator::current>
    </Generator::current:1>
1
    <Generator::current>
    </Generator::current:1>
    <Generator::next>
      <fooResults>
      </fooResults:2>
    </Generator::next:NULL>
    <Generator::current>
    </Generator::current:2>
    <Generator::current>
    </Generator::current:2>
2
    <Generator::current>
    </Generator::current:2>
    <Generator::next>
      <fooResults>
      </fooResults:3>
    </Generator::next:NULL>
    <Generator::current>
    </Generator::current:3>
    <Generator::current>
    </Generator::current:3>
3
    <Generator::current>
    </Generator::current:3>
    <Generator::next>
      <fooResults>
      </fooResults:4>
    </Generator::next:NULL>
    <Generator::current>
    </Generator::current:4>
    <Generator::current>
    </Generator::current:4>
4
    <Generator::current>
    </Generator::current:4>
    <Generator::next>
      <fooResults>
      </fooResults:5>
    </Generator::next:NULL>
    <Generator::current>
    </Generator::current:5>
    <Generator::current>
    </Generator::current:5>
5
    <Generator::current>
    </Generator::current:5>
    <!-- init Generator::send() -->
    <Generator::send>
      <fooResults>
      </fooResults:NULL>
    </Generator::send:NULL>
    <Generator::next>
    </Generator::next:NULL>
    <Generator::current>
    </Generator::current:NULL>
  </doSomething:'Done'>
Done
</file '%s'>