PHP 输出字符串
<?php$str=<<<EODHello,thisisanexampleforHEREDOCSyntax.Pleaseattentiontoit.EOD;echo$st...
<?php
$str= <<<EOD
Hello, this is an example for HEREDOC Syntax.
Please attention to it.
EOD;
echo $str;
?>
这个php程序为什么没有输出呢?服务器已经启动 展开
$str= <<<EOD
Hello, this is an example for HEREDOC Syntax.
Please attention to it.
EOD;
echo $str;
?>
这个php程序为什么没有输出呢?服务器已经启动 展开
2个回答
展开全部
这是php的定界符
不是没输出,是报错了,你没开报错提示:
Parse error: syntax error, unexpected T_SL in C:\wamp\www\index.php on line 2
语法错误。
原因有2个:
$str= 这里多一个空格,所以出错了
而且<<<EOD和EOD(开始和结束部分,空格)不可以有空格
<?php
$str=<<<EOD
Hello, this is an example for HEREDOC Syntax.
Please attention to it.
EOD;
echo $str;
?>
你看看这个人写的,挺好:http://apps.hi.baidu.com/share/detail/18048533
不是没输出,是报错了,你没开报错提示:
Parse error: syntax error, unexpected T_SL in C:\wamp\www\index.php on line 2
语法错误。
原因有2个:
$str= 这里多一个空格,所以出错了
而且<<<EOD和EOD(开始和结束部分,空格)不可以有空格
<?php
$str=<<<EOD
Hello, this is an example for HEREDOC Syntax.
Please attention to it.
EOD;
echo $str;
?>
你看看这个人写的,挺好:http://apps.hi.baidu.com/share/detail/18048533
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询