
| Path : /usr/src/php/Zend/tests/ |
| Current File : //usr/src/php/Zend/tests/heredoc_008.phpt |
--TEST--
empty doc test (heredoc)
--FILE--
<?php
require_once 'nowdoc.inc';
print <<<ENDOFHEREDOC
ENDOFHEREDOC;
$x = <<<ENDOFHEREDOC
ENDOFHEREDOC;
print "{$x}";
?>
--EXPECT--