PHP heredoc语法

我想知道是否:

$foo = <<< EOT
Hello, World!
EOT;

和…一样有效

$foo = <<<EOT
Hello, World!
EOT;

特别是在所有版本的PHP(或者只是最新的版本)中是否都是这样.

我想知道因为我想知道<<<<<<<<<第一个EOT标识符在语法上是有效的.例如,我的PHP解释器5.3.10运行正确但是
如果有的话,我的vim文本编辑器不会以相同的方式突出显示heredoc
<<<<<<和EOT(EOT标识符为白色而不是紫色). 那么这里的交易是什么?在所有版本的PHP中是否合法?

解决方法:

不,你不应该在<<<<<<<<<<和标识符.如PHP文档中所指定:

(…) 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.

资料来源:http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc

上一篇:在HTML按钮上回显PHP数组值的JavaScript警报?


下一篇:图片和base64互转