Html特殊字符_解码()不使用空格

2022-04-11 00:00:00 decode php

我正在尝试使用htmlSpecial alchars_decode(),但它不能将 解码为空格。这个问题有什么解决方案吗?

我的代码:

$query = mysql_query("select * from nowosci order by id desc limit 0,3");
while($rekord = mysql_fetch_array($query))
{
$tekst .= '<h1 class="body"><div class="date" style="display:inline; color:grey; margin-right:5px;">'.$rekord[3].'</div>'.html_entity_decode($rekord[1]).'</h1><div class="main">'.html_entity_decode($rekord[2]).'</div>';
}
echo $tekst

解决方案

改用html_entity_decode()

htmlspecialchars_decode()仅解码&amp; &quot; (when ENT_NOQUOTES is not set), &#039; (when ENT_QUOTES is set), &lt; and &gt;.

相关文章