法语语言的字符集无法正常工作

发布于 2025-01-08 16:43:41 字数 1002 浏览 0 评论 0原文

我正在开发的网站上有法语问题...我有菜单栏、选项卡和每个选项卡中的文本...

当我设置 charset=ISO-8859-1 ,正文中的文本工作正常,但菜单栏和选项卡出错!

这是我的文本示例...

Menu Bar:  CONTRÔLE DE LA QUALITÉ    <<<<<<<<<<<<  Wrong
Tabs Text: CARRI&Atilde;&#136;RES      <<<<<<<<<<<<  Wrong
Body Text: égyptien                    <<<<<<<<<<<<  Correct

但是当我设置 charset=utf-8 时,

Menu Bar:  CONTRÔLE DE LA QUALITÉ      <<<<<<<<<<<<  Correct
Tabs Text: CARRI&Atilde;&#136;RES      <<<<<<<<<<<<  Wrong
Body Text: �gyptien                   <<<<<<<<<<<<  Wrong

我尝试使用 mb_cenvert_encoding 设置编码,但没有成功也可以工作...有人知道如何让它工作吗?

更新:

网站问题

I have a problem with the french language on a website I`m developing ... I have menu bar, tabs and text within each tab ...

When I set the charset=ISO-8859-1, the text in the body works fine, but the menu bar and the tabs goes wrong!

This is a sample of the text I have ...

Menu Bar:  CONTRÔLE DE LA QUALITÉ    <<<<<<<<<<<<  Wrong
Tabs Text: CARRIÈRES      <<<<<<<<<<<<  Wrong
Body Text: égyptien                    <<<<<<<<<<<<  Correct

But when I set the charset=utf-8

Menu Bar:  CONTRÔLE DE LA QUALITÉ      <<<<<<<<<<<<  Correct
Tabs Text: CARRIÈRES      <<<<<<<<<<<<  Wrong
Body Text: �gyptien                   <<<<<<<<<<<<  Wrong

I have tried mb_cenvert_encoding to set the encoding, but it didn't also work ... Anyone have any idea how to let this work?

UPDATE:

Website problem

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

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

发布评论

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

评论(2

清风挽心 2025-01-15 16:43:41

您是否已将编码元标记添加到您的头部?

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

来自声明编码

请注意,如果您不将此标记添加为 head 的第一个标记,某些版本的 FireFox 将在遇到此标记后重新加载您的页面;这会导致恼人的“双重加载”行为。

Have you added the encoding meta tag to your head?

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

From Declare the Encoding.

Note that if you don't add this tag as the first tag of the head, some versions of FireFox will reload your pages after encountering this tag; this causes annoying 'double load' behaviour.

(り薆情海 2025-01-15 16:43:41

好的,我终于找到了解决方案......您可以将其称为解决方法。

我使用过 iconv() PHP 函数

OK, I've finally reached a solution ... You can call it a work around.

I've used iconv() PHP function

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