require_parse_exception.phpt 946 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --TEST--
  2. Parse exceptions when using require
  3. --INI--
  4. allow_url_include=1
  5. --FILE--
  6. <?php
  7. function test_parse_error($code) {
  8. try {
  9. require 'data://text/plain;base64,' . base64_encode($code);
  10. } catch (ParseError $e) {
  11. echo $e->getMessage(), " on line ", $e->getLine(), "\n";
  12. }
  13. }
  14. test_parse_error(<<<'EOC'
  15. <?php
  16. { { { { { }
  17. EOC
  18. );
  19. test_parse_error(<<<'EOC'
  20. <?php
  21. /** doc comment */
  22. function f() {
  23. EOC
  24. );
  25. test_parse_error(<<<'EOC'
  26. <?php
  27. empty
  28. EOC
  29. );
  30. test_parse_error('<?php
  31. var_dump(078);');
  32. test_parse_error('<?php
  33. var_dump("\u{xyz}");');
  34. test_parse_error('<?php
  35. var_dump("\u{ffffff}");');
  36. ?>
  37. --EXPECT--
  38. syntax error, unexpected end of file on line 2
  39. syntax error, unexpected end of file on line 3
  40. syntax error, unexpected end of file, expecting '(' on line 2
  41. Invalid numeric literal on line 2
  42. Invalid UTF-8 codepoint escape sequence on line 2
  43. Invalid UTF-8 codepoint escape sequence: Codepoint too large on line 2