19 lines
200 B
Plaintext
19 lines
200 B
Plaintext
|
|
--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
|