String 字符串

多行字符串:

http://php.net/manual/zh/language.types.string.php#language.types.string.syntax.nowdoc

DEMO:

  //heredoc 解析变量

<?php
$str = <<<EOD //some codes you want to write //the end of the block should be a new line and have no space EOD; echo $str; ?> <?php
/* newdoc */
$str = <<<'EOD' Example of string spanning multiple lines using nowdoc syntax. EOD;

 

posted @ 2016-12-07 16:50  风在山路吹  阅读(146)  评论(0编辑  收藏  举报