【发布时间】:2015-09-15 03:06:56
【问题描述】:
标签: php html mysql utf-8 tinymce
标签: php html mysql utf-8 tinymce
您可能正在寻找 html_entity_decode 函数,
http://php.net/manual/en/function.html-entity-decode.php
$page_content = html_entity_decode($page_text);
小心注射等。
【讨论】:
test
",HTML 已被转换为实体,我也应该选择与额外实体字符相关的 string(23)。 html_entity_decode 帮我修好了,非常感谢!【讨论】: