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

require_once 'nowdoc.inc';

print <<<ENDOFHEREDOC
ENDOFHEREDOC;

$x = <<<ENDOFHEREDOC
ENDOFHEREDOC;

print "{$x}";

?>
--EXPECT--