Here doc 怎么用啊
楼上是对的。例子如下:
$str_string3=<<<EOT
<h1>我的午餐</h1>
<font color="blue">半只烤鸡</font>
<font color="red">一杯酸奶</font>
<a href="1.html"><font color="yellow">查看更多</font></a>
EOT;
echo $str_string3
用于插入大文本
<<<名称
//代码
名称;(必须在行首,后面不能有空格或字符)