分享

关于在php中html标签的转换问题的解决

 小马哥技术屋 2016-10-04

很多朋友在写php的时候,难免会遇到需要将html标签进行转义存储。比如存入数据库、xml文件等。而存储进去后,读取出来则需要转换成html输出。我也是找了两天,才找到解决方法的。

下面分别介绍这两个函数。

1.htmlentities()函数:

说明:将html标签转换成特殊字符。例如将<script>转换成"<script>"

例子:

  1. // An imaginary article submission from bad user  
  2. //  it will redirect anyone to example.com if the code is run in browser  
  3. $userInput "I am going to hax0r your site, hahaha!  
  4.     <script type='text/javascript'>  
  5.     window.location 'http://www.example.com/'  
  6.     </script>'";  
  7.       
  8. //Lets make it safer before we use it  
  9. $userInputEntities htmlentities($userInput);  
  10.   
  11. //Now we can display it  
  12. echo $userInputEntities 

由于最近csdn的控件比较垃圾,请将上面的$apos改成单引号。---呼!

上面的语句执行后,将生成下面的结果

  1. am going to hax0r your site, hahaha!  
  2.     <script type='text/javascript'>  
  3.     window.location 'http://www./'  
  4.     </script> 

2.html_entity_decode()函数

说明:将htmlentities()函数转义过的字符串转成html标签。

例子:

  1. $orig "I'll /"walk/the <b>dog</b> now" 
  2.   
  3. $a htmlentities($orig);  
  4.   
  5. $b html_entity_decode($a);  
  6.   
  7. echo $a// will "walk" the <b>dog</b> now  
  8.   
  9. echo $b// will "walk" the <b>dog</b> now 

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多