php-src/tests/lang/017.phpt
2002-03-29 17:12:11 +00:00

21 lines
226 B
PHP

--TEST--
Testing user-defined function falling out of an If into another
--POST--
--GET--
--FILE--
<?php
$a = 1;
function Test ($a) {
if ($a<3) {
return(3);
}
}
if ($a < Test($a)) {
echo "$a\n";
$a++;
}
?>
--EXPECT--
1