Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php5/php-5.6.6/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php5/php-5.6.6/Zend/tests/array_unshift_COW.phpt

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