PHP中提供了<<<运算符构建多行字符串序列的方法,通常称为here-document或表示为heredoc的简写。
1 <?php2 $author ='wixy';3 echo <<<_END4 Thisis a Headline5 Thisis the first line.6 Thisis the second line.7 ---Writtenby $author.8 _END;9 ?>
1 <?php2 $out =<<<_END3 .....4 _END;5 ?>
PHP中的<<<运算符