php-src/Zend/tests/array_append_COW.phpt

17 lines
232 B
Plaintext
Raw Normal View History

2007-07-09 13:18:03 +00:00
--TEST--
2007-08-03 13:51:11 +00:00
Tests that array manipulation code is correctly dealing with copy on write and splitting on reference
2007-07-09 13:18:03 +00:00
--FILE--
<?php
$a=array();
$b=1;
$c=&$b;
$a[]=$b;
$b=2;
var_dump ($a);
?>
--EXPECT--
array(1) {
[0]=>
int(1)
}