Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 SQL 数据库中有一个 TEXT 列,其中包含一个 £ 字符。我通过一个 sql 查询检索此列并按如下方式回显它:
echo "<div id=\"styler\">$textNote</div>";
但是这个 £ 符号在页面上显示为 �。文本的其余部分正常显示。
如果我像这样在页面上手动输入 £ 符号:
<p>£</p>
它正常显示。
我该如何解决这个问题?
试试这个:
<?php header("Content-type: text/html; charset=utf-8"); ?>