当前位置:Gxlcms >
数据库问题 >
html_entity_decode 将数据库里的 | 互联网金融 “野蛮生长” 的休止符| &rdquo转义成”“
html_entity_decode 将数据库里的 | 互联网金融 “野蛮生长” 的休止符| &rdquo转义成”“
时间:2021-07-01 10:21:17
帮助过:2人阅读
函数调用后
html_entity_decode() 函数把 HTML 实体转换为字符
<?php
$str = "John & ‘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 将数据库里的 | 互联网金融 “野蛮生长” 的休止符| &rdquo转义成”“
标签: