heredoc nowdoc的定义大段文本的用法 引入=<<<'INTRO'
$str1='hello';$str2="hello";
echo $str1,'<br/>',$str2,'<br/>';
//heredoc nowdoc 定义大段文本
$str3 =<<<INTRO
hello
world
ok now;
INTRO;
echo $str3,'<br/>';
//上面的HTML也可以换成INTROIN
$str4 =<<<'INTRO'
远看山有色
近听水无声;
INTRO;
echo $str4;
代码如下:
$str1='hello';
$str2="hello";
echo $str1,'<br/>',$str2,'<br/>';
//heredoc nowdoc 定义大段文本
$str3 =<<<INTRO
hello
world
ok now;
INTRO;
echo $str3,'<br/>';
//上面的HTML也可以换成INTROIN
$str4 =<<<'INTRO'
远看山有色
近听水无声;
INTRO;
echo $str4;
这里要注意引入 =<<<'INTRO' INTRO 和HTML HTML的不同对比。
页:
[1]