mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
25 lines
330 B
PHP
25 lines
330 B
PHP
--TEST--
|
|
basic nowdoc syntax
|
|
--FILE--
|
|
<?php
|
|
|
|
require_once 'nowdoc.inc';
|
|
|
|
print <<<'ENDOFNOWDOC'
|
|
This is a nowdoc test.
|
|
|
|
ENDOFNOWDOC;
|
|
|
|
$x = <<<'ENDOFNOWDOC'
|
|
This is another nowdoc test.
|
|
With another line in it.
|
|
ENDOFNOWDOC;
|
|
|
|
print "{$x}";
|
|
|
|
?>
|
|
--EXPECT--
|
|
This is a nowdoc test.
|
|
This is another nowdoc test.
|
|
With another line in it.
|