标签: php mysql
我的mysql表保存文本
you'd
但是当我使用php获取此值并显示它时,我的浏览器将其显示为
you�d
我正在使用html_entity_decode
$answer = html_entity_decode($row['faq_ans']);
但我仍然没有看到引号。
答案 0 :(得分:1)
我想你想要与html_entity_decode()相反 - htmlentities()。
另外,iconv()是我通常用于字符到字符的转换。