summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug54323.phpt
blob: df6416a0f183923c22da7c24583b71d7dad9c8ff (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
--TEST--
Bug #54323 (Accessing unset()'ed ArrayObject's property causes crash)
--FILE--
<?php
class C {
        public $prop = 'C::prop.orig';
}
class MyArrayObject extends ArrayObject {
}
$c = new C;
$ao = new MyArrayObject($c);
testAccess($c, $ao);
function testAccess($c, $ao) {
        foreach ($ao as $key=>$value) {
        }
        unset($ao['prop']);
        var_dump($c->prop, $ao['prop']);
}
--EXPECTF--
Notice: Undefined property: C::$prop in %sbug54323.php on line 14

Notice: Undefined index: prop in %sbug54323.php on line 14
NULL
NULL