PHP - 不可知的回声<<<构造

时间:2014-09-10 09:54:24

标签: php echo

我在PHP脚本中找到了这个构造:脚本中的echo <<<Start;

这是什么意思?

我的假设是,这是一种重定向,但它只是一个假设,我想知道这个结构的真正功能。

1 个答案:

答案 0 :(得分:1)

它被称为heredoc语法:

echo <<<END
This uses the "here document" syntax to output
multiple lines with $variable interpolation. Note
that the here document terminator must appear on a
line with just a semicolon. no extra whitespace!
END;