php html标签转换问题的解决办法:1、使用“htmlentities()”函数将html标签转换成特殊字符;2、使用“html_entity_decode()”函数将htmlentities函数转义过的字符串转成html标签。
推荐:《PHP视频教程》
很多朋友在写php的时候,难免会遇到需要将html标签进行转义存储。比如存入数据库、xml文件等。而存储进去后,读取出来则需要转换成html输出。网上有许多人编写的转换函数,很长很难懂。其实php早就自带有这样的函数。大可不必自己编写。
下面分别介绍这两个函数。
1.htmlentities()函数:
说明:将html标签转换成特殊字符。例如将转换成””
例子:
立即学习“PHP免费学习笔记(深入)”;
[PHP] view plaincopy
// An imaginary article submission from a bad user // it will redirect anyone to example.com if the code is run in a browser $userInput = “I am going to hax0r your site, hahaha! window.location = ‘http://www.example.com/’ ‘”; //Lets make it safer before we use it $userInputEntities = htmlentities($userInput); //Now we can display it echo $userInputEntities;
由于最近csdn的控件比较垃圾,请将上面的$apos改成单引号。—呼!
上面的语句执行后,将生成下面的结果
[HTML] view plaincopy
I am going to hax0r your site, hahaha! script type=’text/javascript’> window.location = ‘http://www.88web.org/’ script>‘
2.html_entity_decode()函数
说明:将htmlentities()函数转义过的字符串转成html标签。
例子:
[PHP] view plaincopy
$orig = “I’ll /”walk/” the dog now”; $a = htmlentities($orig); $b = html_entity_decode($a); echo $a; // I will “walk” the dog now echo $b; // I will “walk” the dog now
转载自页面 http://www.cankaojishu.com/bcyy/82144.html
以上就是如何解决php html标签转换问题的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2128466.html