-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/tests/lang/
File Upload :
Current File : //usr/src/php/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

Copyright © 2017 || Recoded By Mr.Bumblebee