我在PHP脚本中找到了这个构造:脚本中的echo <<<Start;
。
这是什么意思?
我的假设是,这是一种重定向,但它只是一个假设,我想知道这个结构的真正功能。
答案 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;