编码问题标题标签

发布于 2024-10-12 13:48:50 字数 421 浏览 3 评论 0原文

我在将标签与 PHP 结合使用时遇到了一些问题。我的代码是:

$title = '....';
echo '<title>'.htmlspecialchars($title).'</title>';

当我使用 "Niederländische Zitate" 时,浏览器输出“Niederländische Zitate” 当我使用“Niederl&auml;ndische Zitate”时,浏览器输出“Niederländische Zitate”

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

有人知道如何解决这个问题吗?

I've got a little problem with the tag in combination with PHP. My code is:

$title = '....';
echo '<title>'.htmlspecialchars($title).'</title>';

When i use "Niederländische Zitate" the browser outputs "Niederl�ndische Zitate"
When i use "Niederländische Zitate" the browser outputs "Niederländische Zitate"

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

Anyone has an idea how to fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉鱼一梦 2024-10-19 13:48:50

除了元标记之外,您还需要:

a) 发送 UTF-8 header,如下所示:

 header ('Content-type: text/html; charset=utf-8');

在脚本的最开头。

b)并将脚本文件保存为UTF-8 without BOM编码。使用任何好的代码编辑器,例如 Notepad++,它允许这样做。

In addition to meta tag, you also need to:

a) send UTF-8 header like this:

 header ('Content-type: text/html; charset=utf-8');

in the very beginning of your script.

b) and save the script file as UTF-8 without BOM encoding. Use any good code editor, like Notepad++ which allows this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文