0106_compile.test 424 B

123456789101112131415161718
  1. #################################################
  2. # name: compile
  3. # purpose: test compiling code
  4. # expect: TEST::FORMAT
  5. # options: -rr
  6. #################################################
  7. #[Attempting compilation of %s]
  8. #[Success]
  9. #Hello World
  10. #################################################
  11. <:
  12. define('OUT',
  13. tempnam(null, "phpdbg"));
  14. file_put_contents(OUT, "<?php echo \"Hello World\"; ?>");
  15. phpdbg_exec(OUT);
  16. :>
  17. run
  18. quit