summaryrefslogtreecommitdiff
path: root/ext/spl/tests/ArrayObject_modify_shared_object_properties.phpt
blob: 24c247cabd9d00b711b829f4df3d0cdef4608ae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Modifications to ArrayObjects should not affect shared properties tables
--FILE--
<?php

$obj = (object)['a' => 1, 'b' => 2];
$ao = new ArrayObject($obj);
$arr = (array) $obj;
$ao['a'] = 42;
var_dump($arr);

?>
--EXPECT--
array(2) {
  ["a"]=>
  int(1)
  ["b"]=>
  int(2)
}