标签:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Language" content="zh-CN" /> <title>Hello World</title> <style> body{font-size:15px;color:#000;font-family:Arial,Helvetica,sans-serif;} a{color:#039;text-decoration:none;} </style> </head> <body> </b> <?php echo "Hello world!这是正文"; ?> <br> <a href=# >这是一个超链接</a> </b> </body> </html>
<?php if(!$_POST) { echo ‘<form action="" method="post"> 服务器地址:<input type="text" name="host" value="localhost" /><br /> 数据库账号:<input type="text" name="user" value="" /><br /> 数据库密码:<input type="password" name="pwd" value="" /><br /> 指定数据库:<input type="text" name="db" value="test" /><br /> <input type="submit" value="确定"/> </form><hr/>说明:<b>……<br /></b> ‘; } ?>
echo "<input type=\"submit\" value=\"确定\"/>"
<<<EOT EOT;
<?php $label1 = "deepblue_mainslide"; $label2 = "deepblue_mainh1"; $label3 = "deepblue_maint1"; $label4 = "deepblue_maint2"; $rs = array("http://123.abc.com", "abc", "ABC"); print <<<EOT <div class="slidecont">{$label1}</div> <div class="newcontainter"> <div class="head">{$label2}</div> <div class="cont" id="Tab1"> {$label3} </div> <div class="cont" id="Tab2"> {$label4} </div> </div> <a href="$rs[0]" title="$rs[1]" target="_blank">$rs[2]</a> EOT; ?>
<?php print <<<EOT[1] <a href="http://blog.i1728.com/" title="东方天宇的博客">东方天宇的博客</a> [2]EOT;[3] echo "喂~人家在等你呢!"; ?>
我们会发现,[如果三个地方任何一个地方加了空格],会显示以下三种不同的错误提示,最后的echo也没有执行。
//[1]( ! ) Parse error: syntax error, unexpected ‘<<‘ (T_SL) in D:\MyHTTP\Apache24\htdocs\testPHPmixHTML04.php on line 2 //[2]( ! ) Parse error: syntax error, unexpected end of file, expecting variable (T_VARIABLE) or heredoc end (T_END_HEREDOC) or ${ (T_DOLLAR_OPEN_CURLY_BRACES) or {$ (T_CURLY_OPEN) in D:\……\testPHPmixHTML04.php on line 14 //[3]( ! ) Parse error: syntax error, unexpected ‘{‘ in D:\MyHTTP\Apache24\htdocs\testPHPmixHTML04.php on line 8
这是因为(<<<EOT)没有找到标识符结束字符,将echo语句也包含到需要输入的内容了。
同时,因为没有找到标识符结束字符所有的内容都不会输出。标签:
原文地址:http://www.cnblogs.com/skysowe/p/5771758.html