summaryrefslogtreecommitdiff
path: root/ext/spl/tests/forward.phpt
blob: 8a14a52fe8e379e522beaeb8d18c7efa2e834212 (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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
--TEST--
SPL: forward
--SKIPIF--
<?php if (!extension_loaded("spl")) print "skip"; ?>
--FILE--
<?php
class c implements spl_forward_assoc {

	public $max = 3;
	public $num = 0;

	function current() {
		echo __METHOD__ . "\n";
		return $this->num;
	}
	function next() {
		echo __METHOD__ . "\n";
		$this->num++;
	}
	function hasMore() {
		echo __METHOD__ . "\n";
		return $this->num < $this->max;
	}
	function key() {
		echo __METHOD__ . "\n";
		switch($this->num) {
			case 0: return "1st";
			case 1: return "2nd";
			case 2: return "3rd";
			default: return "???";
		}
	}
}

$i = new c();

$implements = class_implements($i);
asort($implements);
$c_info = array(get_class($i) => array('inheits' => class_parents($i), 'implements' => $implements));
print_r($c_info);
$methods = get_class_methods("spl_forward_assoc");
sort($methods);
print_r($methods);
$methods = get_class_methods($i);
sort($methods);
print_r($methods);


echo "1st try\n";
foreach($i as $w) {
	echo "object:$w\n";
}

echo "2nd try\n";

foreach($i as $v => $w) {
	echo "object:$v=>$w\n";
}

echo "3rd try\n";
$i->num = 0;

foreach($i as $v => $w) {
	echo "object:$v=>$w\n";
}

print "Done\n";
?>
--EXPECT--
Array
(
    [c] => Array
        (
            [inheits] => Array
                (
                )

            [implements] => Array
                (
                    [spl_assoc] => spl_assoc
                    [spl_forward] => spl_forward
                    [spl_forward_assoc] => spl_forward_assoc
                )

        )

)
Array
(
    [0] => current
    [1] => hasMore
    [2] => key
    [3] => next
)
Array
(
    [0] => current
    [1] => hasMore
    [2] => key
    [3] => next
)
1st try
c::hasMore
c::current
c::key
object:0
c::next
c::hasMore
c::current
c::key
object:1
c::next
c::hasMore
c::current
c::key
object:2
c::next
c::hasMore
2nd try
c::hasMore
3rd try
c::hasMore
c::current
c::key
object:1st=>0
c::next
c::hasMore
c::current
c::key
object:2nd=>1
c::next
c::hasMore
c::current
c::key
object:3rd=>2
c::next
c::hasMore
Done