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.
我将 norepad 中的一些文件更改为 UTF-8,而 firefox 显示的字符非常奇怪。我在 .php 文件中有西里尔字符,如果我没有用 UTF-8 保存文件,我会得到 '?????'
但是我现在遇到的问题是 Firefox 显示 stange 字符。谁能帮我吗?
检查以确保您的网络服务器实际上将字符集设置为 UTF-8。您可以使用浏览器开发人员工具检查这一点。需要检查的一些事项:
在 php.ini 中:
default_charset = "utf-8"
设置标题的php代码:
header('content-type: text/html; charset: utf-8');