-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/Zend/tests/
File Upload :
Current File : //usr/src/php/Zend/tests/array_append_COW.phpt

--TEST--
Tests that array manipulation code is correctly dealing with copy on write and splitting on reference
--FILE--
<?php
	$a=array();
	$b=1;
	$c=&$b;
	$a[]=$b;
	$b=2;
	var_dump ($a);
?>
--EXPECT--
array(1) {
  [0]=>
  int(1)
}

Copyright © 2017 || Recoded By Mr.Bumblebee