summaryrefslogtreecommitdiff
path: root/tests/lang/012.phpt
blob: 117137a29b57b1de6f0fd0f5b604eb56830adfd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--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