1
0
mirror of https://github.com/php/php-src.git synced 2026-04-19 05:51:02 +02:00
Files
archived-php-src/Zend/tests/nowdoc_008.phpt
Dmitry Stogov 87a8f72f49 Added NOWDOC
2008-02-12 09:28:30 +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--