summaryrefslogtreecommitdiff
path: root/tests/lang/012.phpt
blob: b54132b906e98fde2bc8e4d354a1b2982cc86f04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
Testing stack after early function return
--POST--
--GET--
--FILE--
<?php 
function F () { 
	if(1) {
		return("Hello");
	}
}

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