php html标签转义/反转义

浏览:19721 发布日期:2016/11/02 分类:功能实现 关键字: php html转义/反转义
很多朋友在写php的时候,难免会遇到需要将html标签进行转义存储。比如存入数据库、xml文件等。而存储进去后,读取出来则需要转换成html输出。网上有许多人编写的转换函数,很长很难懂。其实php早就自带有这样的函数。大可不必自己编写。
下面分别介绍这两个函数。
1.htmlentities()函数:
说明:将html标签转换成特殊字符。例如将<script>转换成"<script>"
例子:
  
上面的语句执行后,将生成下面的结果: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标签。
例子:$orig = "I'll /"walk/" the <b>dog</b> now";  
$a = htmlentities($orig);  
$b = html_entity_decode($a);  
echo $a; // I will "walk" the <b>dog</b> now    
echo $b; // I will "walk" the <b>dog</b> now 
评论( 相关
后面还有条评论,点击查看>>