法语语言的字符集无法正常工作
我正在开发的网站上有法语问题...我有菜单栏、选项卡和每个选项卡中的文本...
当我设置 charset=ISO-8859-1
,正文中的文本工作正常,但菜单栏和选项卡出错!
这是我的文本示例...
Menu Bar: CONTRÔLE DE LA QUALITÉ <<<<<<<<<<<< Wrong
Tabs Text: CARRIÈRES <<<<<<<<<<<< Wrong
Body Text: égyptien <<<<<<<<<<<< Correct
但是当我设置 charset=utf-8
时,
Menu Bar: CONTRÔLE DE LA QUALITÉ <<<<<<<<<<<< Correct
Tabs Text: CARRIÈ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:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否已将编码元标记添加到您的头部?
来自声明编码。
请注意,如果您不将此标记添加为
head
的第一个标记,某些版本的 FireFox 将在遇到此标记后重新加载您的页面;这会导致恼人的“双重加载”行为。Have you added the encoding meta tag to your head?
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.好的,我终于找到了解决方案......您可以将其称为解决方法。
我使用过
iconv() PHP 函数
OK, I've finally reached a solution ... You can call it a work around.
I've used
iconv() PHP function