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.
我的网页的响应标题显示:
Content-Type:text/html; charset=UTF-8
但是,对于像é. 我到底应该怎么做?设置 UTF-8 的是我的 .htaccess。
é
如果是脚本或 HTML 文件,请检查文件本身的编码,应保存为 UTF-8。
在 Zend 中,它类似于:Edit->Set encoding->Other: UTF-8,
Edit->Set encoding->Other: UTF-8,
如果您提供 HTML 页面,则需要在 HTML 文件中指明内容为 UTF-8。您可以通过在标题部分添加元 html 标记来做到这一点:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">