
| Path : /usr/src/php/Zend/tests/ |
| Current File : //usr/src/php/Zend/tests/heredoc_001.phpt |
--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.