Using <<<CON in PHP
What is the effect of the following code?
$page = <<<CON
<p><center>Blah blah blah</center></p>
CON;
What does the <<<CON
do?
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;
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
链接地址: http://www.djcxy.com/p/1788.html上一篇: PHP中的这种语法是什么?
下一篇: 在PHP中使用<<< CON