Php <<<是什么意思?

Mag*_*ero 6 php syntax

http://us2.php.net/manual/en/language.oop5.properties.php的以下代码中,<<<符号是什么意思?

<?php
class SimpleClass
{
   // invalid property declarations:
   public $var1 = 'hello ' . 'world';
   public $var2 = <<<EOD
hello world
EOD;
   public $var3 = 1+2;
   public $var4 = self::myStaticMethod();
   public $var5 = $myVar;

   // valid property declarations:
   public $var6 = myConstant;
   public $var7 = array(true, false);

   // This is allowed only in PHP 5.3.0 and later.
   public $var8 = <<<'EOD'
hello world
EOD;
}
?>
Run Code Online (Sandbox Code Playgroud)

Tat*_*nen 5

它被称为Heredoc语法,可用于分配字符串值.