nowdoc_012.phpt 349 B

12345678910111213141516171819202122232425
  1. --TEST--
  2. Test false labels
  3. --FILE--
  4. <?php
  5. require_once 'nowdoc.inc';
  6. $x = <<<'ENDOFNOWDOC'
  7. This is a nowdoc test.
  8. NOTREALLYEND;
  9. Another line
  10. NOTENDEITHER;
  11. ENDOFNOWDOCWILLBESOON
  12. Now let's finish it
  13. ENDOFNOWDOC;
  14. print "{$x}\n";
  15. ?>
  16. --EXPECT--
  17. This is a nowdoc test.
  18. NOTREALLYEND;
  19. Another line
  20. NOTENDEITHER;
  21. ENDOFNOWDOCWILLBESOON
  22. Now let's finish it