017.phpt 227 B

123456789101112131415161718
  1. --TEST--
  2. Testing user-defined function falling out of an If into another
  3. --FILE--
  4. <?php
  5. $a = 1;
  6. function Test ($a) {
  7. if ($a<3) {
  8. return(3);
  9. }
  10. }
  11. if ($a < Test($a)) {
  12. echo "$a\n";
  13. $a++;
  14. }
  15. ?>
  16. --EXPECT--
  17. 1