summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug74058.phpt
blob: a416d8f15ae001c2c56397f5d7a3a814065795d5 (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
--TEST--
Bug #74058 (ArrayObject can not notice changes)
--FILE--
<?php

class MyArrayObject extends ArrayObject
{
    public function __construct($input = [])
    {
        parent::__construct($input, ArrayObject::ARRAY_AS_PROPS);
    }

    public function offsetSet($x, $v)
    {
        echo "offsetSet('{$x}')\n";
        return parent::offsetSet($x, $v);
    }

    public function offsetGet($x)
    {
        echo "offsetGet('{$x}')\n";
        return parent::offsetGet($x);
    }
}

class MyArray extends ArrayObject
{
    public function __construct($input = [])
    {
        parent::__construct($input);
    }

    public function offsetSet($x, $v)
    {
        echo "offsetSet('{$x}')\n";
        return parent::offsetSet($x, $v);
    }

    public function offsetGet($x)
    {
        echo "offsetGet('{$x}')\n";
        return parent::offsetGet($x);
    }
}

$x = new MyArrayObject;
$x->a1 = new stdClass();
var_dump($x->a1);

$x->a1->b = 'some value';
var_dump($x->a1);

$y = new MyArray();
$y['a2'] = new stdClass();
var_dump($y['a2']);

$y['a2']->b = 'some value';
var_dump($y['a2']);

?>
--EXPECTF--
offsetSet('a1')
offsetGet('a1')
object(stdClass)#%s (0) {
}
offsetGet('a1')
offsetGet('a1')
object(stdClass)#%s (1) {
  ["b"]=>
  string(10) "some value"
}
offsetSet('a2')
offsetGet('a2')
object(stdClass)#%s (0) {
}
offsetGet('a2')
offsetGet('a2')
object(stdClass)#%s (1) {
  ["b"]=>
  string(10) "some value"
}