php-src/Zend/tests/heredoc_001.phpt
2008-02-12 09:27:45 +00:00

24 lines
286 B
PHP

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