码迷,mamicode.com
首页 > 数据库 > 详细

html_entity_decode 将数据库里的 | 互联网金融 “野蛮生长” 的休止符| &rdquo转义成”“

时间:2016-01-29 20:08:58      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
 
函数调用后
技术分享
 
html_entity_decode() 函数把 HTML 实体转换为字符
<?php
$str = "John &amp; ‘Adams‘";
echo html_entity_decode($str);
echo "<br />";
echo html_entity_decode($str, ENT_QUOTES);
echo "<br />";
echo html_entity_decode($str, ENT_NOQUOTES);
?>
浏览器会输出:
John & ‘Adams‘
John & ‘Adams‘
John & ‘Adams‘
 

html_entity_decode 将数据库里的 | 互联网金融 &ldquo;野蛮生长&rdquo; 的休止符| &rdquo转义成”“

标签:

原文地址:http://www.cnblogs.com/scjzhong/p/5169751.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!