我将 HTML 存储到我的数据库中:
$ohtml = htmlentities($html);
但是当我使用检索数据时
$new_html = html_entity_decode($ohtml, ENT_QUOTES);
显示的数据没问题,但我想转换为真正的 HTML 而不仅仅是显示代码。前任。我想显示一个文本区域,如果$new_html = "<textarea> </textarea>";
我将 HTML 存储到我的数据库中:
$ohtml = htmlentities($html);
但是当我使用检索数据时
$new_html = html_entity_decode($ohtml, ENT_QUOTES);
显示的数据没问题,但我想转换为真正的 HTML 而不仅仅是显示代码。前任。我想显示一个文本区域,如果$new_html = "<textarea> </textarea>";
只是呼应$new_html
.
$new_html = html_entity_decode($ohtml, ENT_QUOTES);
echo $new_html;
编辑:我很慢..试图理解他的问题花了很长时间,其他人已经发布了解决方案的评论......
EDIT2:试试这个代码,它对我有用:
$html = "<b>I hate entities</b>";
$ohtml = htmlentities($html);
$new_html = html_entity_decode($ohtml, ENT_QUOTES);
echo $new_html;