![]() ![]() | ![]() |
1.1 misho 1: --TEST-- 2: basic binary heredoc syntax 3: --FILE-- 4: <?php 5: 6: require_once 'nowdoc.inc'; 7: 8: print b<<<ENDOFHEREDOC 9: This is a heredoc test. 10: 11: ENDOFHEREDOC; 12: 13: $x = b<<<ENDOFHEREDOC 14: This is another heredoc test. 15: 16: ENDOFHEREDOC; 17: 18: print "{$x}"; 19: 20: ?> 21: --EXPECT-- 22: This is a heredoc test. 23: This is another heredoc test.