Php <<<是什么意思?

前端之家收集整理的这篇文章主要介绍了Php <<<是什么意思?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
http://us2.php.net/manual/en/language.oop5.properties.php的以下代码中<<<<<<<象征意味着?
  1. <?PHP
  2. class SimpleClass
  3. {
  4. // invalid property declarations:
  5. public $var1 = 'hello ' . 'world';
  6. public $var2 = <<<EOD
  7. hello world
  8. EOD;
  9. public $var3 = 1+2;
  10. public $var4 = self::myStaticMethod();
  11. public $var5 = $myVar;
  12.  
  13. // valid property declarations:
  14. public $var6 = myConstant;
  15. public $var7 = array(true,false);
  16.  
  17. // This is allowed only in PHP 5.3.0 and later.
  18. public $var8 = <<<'EOD'
  19. hello world
  20. EOD;
  21. }
  22. ?>
它被称为 Heredoc syntax,可用于分配字符串值.

猜你在找的PHP相关文章