Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/foreach_016.phpt

--TEST--
array_unshift() function precerve foreach by reference iterator pointer
--FILE--
<?php
$a = [1,2,3];
foreach($a as &$v) {
	echo "$v\n";
	if ($v == 2) {
		array_unshift($a, 0, 0, 0, 0, 0, 0, 0, 0);
	}
}
var_dump(count($a));
?>
--EXPECT--
1
2
3
int(11)