这跟双引号把字符串包起来有什么不同之处?
Heredoc和Nowdoc最主要的作用就是输出大量字符串,特别是HTML的字符串,他可以避免你在使用''或""时的转译问题。
<?php
echo"<h1>我的午餐</h1>
<font color=\"blue\">半只烤鸡</font>
<font color=\"red\">一杯酸奶</font>
<a href=\"1.html\"><font color=\"yellow\">查看更多</font></a>
";
?>
<?php
echo <<<EOT
<h1>我的午餐</h1>
<font color="blue">半只烤鸡</font>
<font color="red">一杯酸奶</font>
<a href="1.html"><font color="yellow">查看更多</font></a>
EOT;
?>
这种方式的定界符适用于大文本