可能重复: 在 PHP 中,“<<<”代表什么?
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 在 PHP 中,“<<<”代表什么? 问问题
可能重复: 在 PHP 中,“<<<”代表什么? 参考 - 这个符号在 PHP 中是什么意思?
我在 PHP 脚本中遇到了这个问题。
(请注意,我是新手,所以我可能看起来很愚蠢)
$Var['Text'] = <<<OUT String Here OUT;
这称为标记字符串的 Heredoc 语法。看看这个!
这称为标记字符串的 Heredoc 语法。一探究竟!
这是一个heredoc。想想多行字符串。
它被称为 heredoc,请参见此处。这是另一种创建字符串的方法。