在 PHP 中使用 <<
下面代码的效果是什么?
$page = <<<CON
<p><center>Blah blah blah</center></p>
CON;
< 的作用是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web
技术交流群。
下面代码的效果是什么?
$page = <<<CON
<p><center>Blah blah blah</center></p>
CON;
<
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这称为
这里文档
。它本质上是一种定义跨多行变量值的方法,并且不需要像传统字符串那样进行转义。 “CON”部分只是一个标识符,表示值的开始和结束。可以将其更改为更熟悉的值。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.这就是 PHP heredoc 运算符。详细信息请参见此链接:
http ://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc
That's the PHP heredoc operator. Details at this link:
http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc