HEX
Server: Apache
System: Linux msm5694.mjhst.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: camjab_ssh (1000)
PHP: 5.3.29
Disabled: NONE
Upload Files
File: //usr/src/php-7.2.34/tests/lang/foreachLoop.011.phpt
--TEST--
Changing from an interable type to a non iterable type during the iteration
--FILE--
<?php
echo "\nChange from array to non iterable:\n";
$a = array(1,2,3);
$b=&$a;
foreach ($a as $v) {
	var_dump($v);
	$b=1;
}

echo "\nChange from object to non iterable:\n";
$a = new stdClass;
$a->a=1;
$a->b=2;
$b=&$a;
foreach ($a as $v) {
	var_dump($v);
	$b='x';
}

?>
--EXPECTF--
Change from array to non iterable:
int(1)
int(2)
int(3)

Change from object to non iterable:
int(1)
int(2)