“<<<”的名称是什么?操作员?

发布于 2024-11-08 11:48:30 字数 117 浏览 0 评论 0 原文

我知道这将是直接的,但它也无法搜索...

这个 3 箭头事物的正确术语/名称是什么 - 例如

<<< HTML

谢谢!

I know this is going to be straight forward but its also impossible to search for...

what is the correct term / name for this 3 arrow thing - e.g.

<<< HTML

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

放血 2024-11-15 11:48:30

这里文档

分隔 字符串 的第三种方法是heredoc语法: <<<。在该运算符之后,提供一个标识符,然后提供一个换行符。 字符串 本身紧随其后,然后再次使用相同的标识符关闭报价。

结束标识符必须从该行的第一列开始。此外,标识符必须遵循与 PHP 中任何其他标签相同的命名规则:它必须仅包含字母数字字符和下划线,并且必须以非数字字符或下划线开头。

<块引用>

警告 请务必注意,带有结束标识符的行不得包含除分号 (;) 之外的其他字符。这尤其意味着标识符不能缩进,并且分号前后不能有任何空格或制表符。同样重要的是要认识到结束标识符之前的第一个字符必须是本地操作系统定义的换行符。在 UNIX 系统(包括 Mac OS X)上,这是 \n。结束分隔符后面还必须跟有换行符。

<块引用>

如果这条规则被破坏并且结束标识符不是“干净的”,则它将不会被视为结束标识符,并且 PHP 将继续寻找结束标识符。如果在当前文件末尾之前找不到正确的结束标识符,则最后一行将导致解析错误。

<块引用>

Heredocs 不能用于初始化类属性。从 PHP 5.3 开始,此限制仅对包含变量的heredocs有效...

Heredoc:

A third way to delimit strings is the heredoc syntax: <<<. After this operator, an identifier is provided, then a newline. The string itself follows, and then the same identifier again to close the quotation.

The closing identifier must begin in the first column of the line. Also, the identifier must follow the same naming rules as any other label in PHP: it must contain only alphanumeric characters and underscores, and must start with a non-digit character or underscore.

Warning It is very important to note that the line with the closing identifier must contain no other characters, except a semicolon (;). That means especially that the identifier may not be indented, and there may not be any spaces or tabs before or after the semicolon. It's also important to realize that the first character before the closing identifier must be a newline as defined by the local operating system. This is \n on UNIX systems, including Mac OS X. The closing delimiter must also be followed by a newline.

If this rule is broken and the closing identifier is not "clean", it will not be considered a closing identifier, and PHP will continue looking for one. If a proper closing identifier is not found before the end of the current file, a parse error will result at the last line.

Heredocs can not be used for initializing class properties. Since PHP 5.3, this limitation is valid only for heredocs containing variables...

和我恋爱吧 2024-11-15 11:48:30

你可以看这个手册php手册

you can see this manual php manual

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文