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