home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / bug-eofquotes.php < prev    next >
Encoding:
PHP Script  |  2004-03-24  |  234 b   |  24 lines

  1. <?php
  2. /**
  3. *
  4. * @package tests
  5. */
  6. /** tests */
  7. function test_eofquotes ()
  8. {
  9. }
  10. echo <<< EOF
  11. This shouldn't be parsed
  12. function bob ()
  13. {
  14. }
  15. EOF;
  16.  
  17. $string = <<< EOF
  18. This shouldn't be parsed
  19. function bob ()
  20. {
  21. }
  22. EOF;
  23. ?>
  24.