在 PHP 中使用 <<
发布于 2024-08-17 22:54:51 字数 192 浏览 3 评论 0 原文

下面代码的效果是什么?

$page = <<<CON
<p><center>Blah blah blah</center></p>
CON;

< 的作用是什么?

What is the effect of the following code?

$page = <<<CON
<p><center>Blah blah blah</center></p>
CON;

What does the <<<CON do?

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

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

发布评论

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

评论(2

忆依然 2024-08-24 22:54:51

这称为 这里文档。它本质上是一种定义跨多行变量值的方法,并且不需要像传统字符串那样进行转义。 “CON”部分只是一个标识符,表示值的开始和结束。可以将其更改为更熟悉的值。

$str = <<<EOD
Example of string
spanning multiple lines
using heredoc syntax.
EOD;

This is known as heredoc. It's essentially a way of defining the value of a variable that spans multiple lines, and doesn't require escaping like traditional strings. The "CON" part is merely an identifier that represents the start and end of the value. This can be changed to a more familiar value.

$str = <<<EOD
Example of string
spanning multiple lines
using heredoc syntax.
EOD;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文