Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.8/tests/lang/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.8/tests/lang/012.phpt

--TEST--
Testing stack after early function return
--FILE--
<?php
function F () {
	if(1) {
		return("Hello");
	}
}

$i=0;
while ($i<2) {
	echo F();
	$i++;
}
?>
--EXPECT--
HelloHello