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.
header()如果您通过以下命令将网站的编码更改为 UTF-8,也许就足够了:
header()
header("Content-Type: text/html; charset=utf-8");在 PHP 中
header("Content-Type: text/html; charset=utf-8");
或者
<?xml version="1.0" encoding="utf-8" ?>;如果您使用一个,则位于 HTML 模板的顶部。
<?xml version="1.0" encoding="utf-8" ?>;
但是,如果您确实需要将这些字符转换为其特定的 html 代码,您应该创建自己的函数来替换未涵盖的符号htmlspecialchars()。
htmlspecialchars()