xref: /PHP-5.5/Zend/tests/heredoc_008.phpt (revision ddcf7a2f)
1--TEST--
2empty doc test (heredoc)
3--FILE--
4<?php
5
6require_once 'nowdoc.inc';
7
8print <<<ENDOFHEREDOC
9ENDOFHEREDOC;
10
11$x = <<<ENDOFHEREDOC
12ENDOFHEREDOC;
13
14print "{$x}";
15
16?>
17--EXPECT--
18