本文介绍了Html特殊字符_解码()不使用空格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用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()
仅解码& " (when ENT_NOQUOTES is not set), ' (when ENT_QUOTES is set), < and >.
这篇关于Html特殊字符_解码()不使用空格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!