ru_php/Zend/tests/bug79477.phpt

22 lines
298 B
PHP

--TEST--
Bug #79477: casting object into array creates references
--FILE--
<?php
#[AllowDynamicProperties]
class Test {
public $prop = 'default value';
}
$obj = new Test;
$obj->{1} = null;
$arr = (array) $obj;
$arr['prop'] = 'new value';
echo $obj->prop, "\n";
?>
--EXPECT--
default value