1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 18:53:33 +02:00
Files
archived-php-src/Zend/tests/nowdoc_008.phpt
T
Dmitry Stogov ddcf7a2f49 Added NEWDOC
2008-02-12 09:27:45 +00:00

18 lines
179 B
PHP

--TEST--
empty doc test (nowdoc)
--FILE--
<?php
require_once 'nowdoc.inc';
print <<<'ENDOFNOWDOC'
ENDOFNOWDOC;
$x = <<<'ENDOFNOWDOC'
ENDOFNOWDOC;
print "{$x}";
?>
--EXPECT--