php-src/tests/lang/017.phpt
2004-05-19 08:45:46 +00:00

19 lines
209 B
PHP

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