php-src/Zend/tests/nowdoc_008.phpt

18 lines
179 B
Plaintext
Raw Normal View History

2008-02-12 09:28:30 +00:00
--TEST--
empty doc test (nowdoc)
--FILE--
<?php
require_once 'nowdoc.inc';
print <<<'ENDOFNOWDOC'
ENDOFNOWDOC;
$x = <<<'ENDOFNOWDOC'
ENDOFNOWDOC;
print "{$x}";
?>
--EXPECT--