mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
18 lines
180 B
PHP
18 lines
180 B
PHP
--TEST--
|
|
empty doc test (heredoc)
|
|
--FILE--
|
|
<?php
|
|
|
|
require_once 'nowdoc.inc';
|
|
|
|
print <<<ENDOFHEREDOC
|
|
ENDOFHEREDOC;
|
|
|
|
$x = <<<ENDOFHEREDOC
|
|
ENDOFHEREDOC;
|
|
|
|
print "{$x}";
|
|
|
|
?>
|
|
--EXPECT--
|