时间:2021-07-01 10:21:17 帮助过:4人阅读
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.bkjia.com/PHPjc/1122392.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1122392.htmlTechArticlePHP中的运算符,php中运算符 PHP中提供了运算符构建多行字符串序列的方法,通常称为here-document或表示为heredoc的简写。 这种方法详细表述了...