summaryrefslogtreecommitdiff
path: root/Zend/tests/nowdoc_008.phpt
blob: 486f0022f64236b37f91cb424c27c1ab4b7e52b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
empty doc test (nowdoc)
--FILE--
<?php

require_once 'nowdoc.inc';

print <<<'ENDOFNOWDOC'
ENDOFNOWDOC;

$x = <<<'ENDOFNOWDOC'
ENDOFNOWDOC;

print "{$x}";

?>
--EXPECT--