VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php html_entity_decode实例教程

关于html_entity_decode在大多数情况下是与htmlspecialchars htmlentities配合使用的.

html_entity_decode用法:

string html_entity_decode(string $string [,int $quote_style = ENT_COMPAT [, string $charset ]]).

html_entity_decode() 函数把 HTML 实体转换为字符.

html_entity_decode() 是 htmlentities() 的反函数也html_entity_decode() 是 htmlspecialchars() 的反函数.

  1. $str = "A 'quote' is bold www.phpfensi.com"
  2.  
  3. Outputs: A 'quote' is <b>bold</b> 
  4. $s = htmlspecialchars($str); 
  5.  
  6. echo $s
  7.  
  8. Outputs: A 'quote' is <b>boldwww.111cn.net</b> 
  9.  
  10. echo html_entity_decode($s); 
  11.  
  12. 'quote' is bold 
再看一个实例,代码如下:
  1.  
  2. $str = "John & 'Adams'"
  3. echo html_entity_decode($str); 
  4. echo ""
  5. echo html_entity_decode($str, ENT_QUOTES); 
  6. echo ""
  7. echo html_entity_decode($str, ENT_NOQUOTES); 
  8. ?>//开源代码phpfensi.com 
  9. //浏览器输出: 
  10. John & 'Adams' 
  11. John & 'Adams' 
  12. John & 'Adams' 

如果在浏览器中查看源代码,会看到这些 HTML:

  1. <html> 
  2. <body> 
  3. John & 'Adams'<br /> 
  4. John & 'Adams'<br /> 
  5. John & 'Adams' 
  6. body> 
  7. html>
  8.  


出处:http://www.phpfensi.com/php/20140920/5763.html


相关教程