1234567891011121314151617181920212223 |
- --TEST--
- basic binary heredoc syntax
- --FILE--
- <?php
- require_once 'nowdoc.inc';
- print b<<<ENDOFHEREDOC
- This is a heredoc test.
- ENDOFHEREDOC;
- $x = b<<<ENDOFHEREDOC
- This is another heredoc test.
- ENDOFHEREDOC;
- print "{$x}";
- ?>
- --EXPECT--
- This is a heredoc test.
- This is another heredoc test.
|