标签:
PHP中提供了<<<运算符构建多行字符串序列的方法,通常称为here-document或表示为heredoc的简写。
1 <?php 2 $author =‘wixy‘; 3 echo <<<_END 4 Thisis a Headline 5 Thisis the first line. 6 Thisis the second line. 7 ---Writtenby $author. 8 _END; 9 ?>
1 <?php 2 $out =<<<_END 3 ..... 4 _END; 5 ?>
标签:
原文地址:http://www.cnblogs.com/w10234/p/5415517.html