blob: 4bcadb78fd3190803c76ee3a6854fd3418cc01f2 (
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
|
--TEST--
Bug #27439 (foreach() with $this segfaults)
--FILE--
<?php
class test_props {
public $a = 1;
public $b = 2;
public $c = 3;
}
class test {
public $array = array(1,2,3);
public $string = "string";
public function __construct() {
$this->object = new test_props;
}
public function getArray() {
return $this->array;
}
public function getString() {
return $this->string;
}
public function case1() {
foreach ($this->array as $foo) {
echo $foo;
}
}
public function case2() {
foreach ($this->foobar as $foo);
}
public function case3() {
foreach ($this->string as $foo);
}
public function case4() {
foreach ($this->getArray() as $foo);
}
public function case5() {
foreach ($this->getString() as $foo);
}
public function case6() {
foreach ($this->object as $foo) {
echo $foo;
}
}
}
$test = new test();
$test->case1();
$test->case2();
$test->case3();
$test->case4();
$test->case5();
$test->case6();
echo "\n";
echo "===DONE===";
?>
--EXPECTF--
123
Notice: Undefined property: test::$foobar in %s on line %d
Warning: Invalid argument supplied for foreach() in %s on line %d
Warning: Invalid argument supplied for foreach() in %s on line %d
Warning: Invalid argument supplied for foreach() in %s on line %d
123
===DONE===
|