php-src/Zend/tests/objects_019.phpt
Steph Fox 6d8760677d - killed off UEXPECT
- altered EXPECT for parser errors. This may or may not be a Good Thing.
2008-05-26 14:33:44 +00:00

33 lines
400 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) {
[u"a"]=>
&int(2)
}
[1]=>
object(stdClass)#2 (1) {
[u"a"]=>
&int(2)
}
}
unicode(3) "foo"