可能重复:
我是否误解了heredoc应该做什么?
我读到这里文档保留了文本中的换行符和其他空格(包括缩进)。但是当我运行以下脚本时,所有内容都会打印在同一行。为什么会这样?
<?php
$str = <<<HDC
This is a sample text
Some more sample text
Even more sample text
HDC;
echo $str;
可能重复:
我是否误解了heredoc应该做什么?
我读到这里文档保留了文本中的换行符和其他空格(包括缩进)。但是当我运行以下脚本时,所有内容都会打印在同一行。为什么会这样?
<?php
$str = <<<HDC
This is a sample text
Some more sample text
Even more sample text
HDC;
echo $str;