mirror of
https://github.com/php/php-src.git
synced 2024-12-01 05:43:38 +08:00
33 lines
397 B
PHP
33 lines
397 B
PHP
--TEST--
|
|
Testing references of dynamic properties
|
|
--FILE--
|
|
<?php
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
$foo = array(new stdclass, new stdclass);
|
|
|
|
$foo[1]->a = &$foo[0]->a;
|
|
$foo[0]->a = 2;
|
|
|
|
$x = $foo[1]->a;
|
|
$x = 'foo';
|
|
|
|
var_dump($foo, $x);
|
|
|
|
?>
|
|
--EXPECT--
|
|
array(2) {
|
|
[0]=>
|
|
object(stdClass)#1 (1) {
|
|
["a"]=>
|
|
&int(2)
|
|
}
|
|
[1]=>
|
|
object(stdClass)#2 (1) {
|
|
["a"]=>
|
|
&int(2)
|
|
}
|
|
}
|
|
string(3) "foo"
|