bug75370.phpt 310 B

123456789101112131415161718192021
  1. --TEST--
  2. Bug #75370 (Webserver hangs on valid PHP text)
  3. --INI--
  4. opcache.enable=1
  5. opcache.enable_cli=1
  6. opcache.optimization_level=-1
  7. --EXTENSIONS--
  8. opcache
  9. --FILE--
  10. <?php
  11. function test()
  12. {
  13. $success = true;
  14. $success = $success AND true;
  15. return $success;
  16. }
  17. var_dump(test());
  18. ?>
  19. --EXPECT--
  20. bool(true)