html_entity_decode 将数据库里的 | 互联网金融 “野蛮生长” 的休止符| &rdquo转义成”“
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html_entity_decode 将数据库里的 | 互联网金融 “野蛮生长” 的休止符| &rdquo转义成”“相关的知识,希望对你有一定的参考价值。
函数调用后
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转义成”“的主要内容,如果未能解决你的问题,请参考以下文章
php html_entity_decode HTML实体转义
SQLSTATE[22007]:无效的日期时间格式:1366 字符串值不正确,html_entity_decode 函数