我对 php heredoc 有疑问。我正在尝试做这样的事情。
$heredoc = <<<_HERE
This is the way
I try to use the
heredoc, but apparently
something is going wrong
_HERE;
显然我应该得到这个:
This is the way
I try to use the
heredoc, but apparently
something is going wrong
但我明白了:
这是我尝试使用heredoc的方式,但显然出了点问题
它没有格式化,主要思想是获取格式化文本。
有人能帮助我吗?