php输出html代码不解析的解决办法:1、用PHP设置编码,代码如“header("Content-type:...charset=utf-8")”;2、用meta标签设置编码,代码如“0d94b2dad07259293dd606022eaa23d8”。
本文操作环境:Windows7系统、PHP7.1版,DELL G3电脑
php 输出html 代码不解析怎么办?
php echo html的内容被解析了,是怎么回事呢,如图
<p><?php<br/> header('Content-Type:text/plain;charset=utf-8'); echo "helloword"; echo "<hr>"; <br/>?><br/></p>
检查之后是因为header(‘Content-Type:text/plain;charset=utf-8’);这一句代码影响的。
在这里要区分一下text/html和text/plain:text/html是以html的形式输出,比如就会在页面上显示一个文本框,而以plain形式就会在页面上原样显示这段代码
那么修改方式能有两种
1、用PHP设置编码
<p> <?php<br/> header("Content-type: text/html; charset=utf-8"); <br/> echo "<a href='http://s.jf3q.com'>helloword</a>"; echo "<hr>"; <br/>?><br/></p>
2.用meta标签
<p> <meta charset="UTF-8"><br/> <?php<br/> echo "helloword"; echo "<hr>";?><br/></p>
推荐学习:《PHP视频教程》
以上是php 输出html 代码不解析怎么办的详细内容。更多信息请关注PHP中文网其他相关文章!