nowdoc_001.phpt 330 B

123456789101112131415161718192021222324
  1. --TEST--
  2. basic nowdoc syntax
  3. --FILE--
  4. <?php
  5. require_once 'nowdoc.inc';
  6. print <<<'ENDOFNOWDOC'
  7. This is a nowdoc test.
  8. ENDOFNOWDOC;
  9. $x = <<<'ENDOFNOWDOC'
  10. This is another nowdoc test.
  11. With another line in it.
  12. ENDOFNOWDOC;
  13. print "{$x}";
  14. ?>
  15. --EXPECT--
  16. This is a nowdoc test.
  17. This is another nowdoc test.
  18. With another line in it.