可能重复:
In PHP, what does “<<<” represent?
Reference - What does this symbol mean in PHP?
我在PHP脚本中碰到了这个。
(请注意,我是新手,所以我可能看起来很蠢)
$Var['Text'] = <<<OUT
String Here
OUT;
答案 0 :(得分:3)
这称为标记字符串的Heredoc语法。的 Check it out! 强>
答案 1 :(得分:0)
这是一个heredoc。想想多行字符串。
答案 2 :(得分:0)
它被称为heredoc,请参阅here。 这是另一种创建字符串的方法。