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.
我正在使用 PHP 从 XML 文档中提取信息并将其回显到页面。在 XMl 文档中,有一些特殊字符,例如 Éamon。当我使用 PHP 回显这些字符时,它看起来像 Éamon。
谁能告诉我如何对这些字符进行转码以便它们正常解析?
你可以让浏览器为你做这件事。在标题中,指定您的字符集为 utf-8:
header('Content-Type: text/html; charset=utf-8');
在向浏览器输出任何其他内容之前执行此操作。现在浏览器将正确解码特殊字符。
您可以使用
<meta http-equiv='Content-Type' content='Type=text/html; charset=utf-8'>