012.phpt 200 B

123456789101112131415161718
  1. --TEST--
  2. Testing stack after early function return
  3. --FILE--
  4. <?php
  5. function F () {
  6. if(1) {
  7. return("Hello");
  8. }
  9. }
  10. $i=0;
  11. while ($i<2) {
  12. echo F();
  13. $i++;
  14. }
  15. ?>
  16. --EXPECT--
  17. HelloHello