php-src/Zend/tests/heredoc_002.phpt
2008-02-12 09:28:30 +00:00

24 lines
295 B
PHP

--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.