将网站编码从 ISO-8859-1 切换为 UTF-8

发布于 2024-08-11 16:21:17 字数 402 浏览 4 评论 0原文

我正在尝试将现有的 PHP 网页转换为使用 UTF-8 编码。

为此,我完成了以下操作:

  1. 在网页开头的元内容标记中指定 UTF-8 作为字符集。
  2. 在 php.ini 中将 default_charset 更改为 UTF-8。
  3. 在 php.ini 文件中指定 UTF-8 作为 iconv 编码。
  4. 使用:AddDefaultCharset UTF-8 在我的 .htaccess 文件中指定 UTF-8。

但毕竟,当我回显 mb_internal_encoding() 时,它显示为 ISO-8859-1。我在这里缺少什么?我知道我可以使用 auto_prepend 附加一个将默认编码更改为 UTF-8 的脚本,但我只是想了解我缺少的内容。

谢谢

I am trying to convert my existing PHP webpage to use UTF-8 encoding.

To do so, I have done the following things:

  1. specified UTF-8 as the charset in the meta content tag at the start of my webpage.
  2. change the default_charset to UTF-8 in the php.ini.
  3. specified UTF-8 as the iconv encoding in the php.ini file.
  4. specified UTF-8 in my .htaccess file using: AddDefaultCharset UTF-8.

Yet after all that, when i echo mb_internal_encoding(), it shows as ISO-8859-1. What am I missing here? I know I could use auto_prepend to attach a script that changes the default encoding to UTF-8, but I'm just trying to understand what I'm missing.

Thanks

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

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

发布评论

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

评论(2

心清如水 2024-08-18 16:21:17

mb_internal_encoding() 不会影响脚本本身的输出,它会影响使用 多字节字符串函数以及 POST 和 GET 输入的转换。

设置

mbstring.internal_encoding='UTF-8'

只需在 php.ini 文件中

mb_internal_encoding('UTF-8');

,或以编程方式设置:说到 mb_ 函数,您需要重写脚本才能使用它们,例如 mb_strlen()而不是 strlen.() 等。

还要检查正在输出的 HTTP 内容类型标头,尽管从您所做的来看应该没问题。

如果您使用数据库,则还必须对其进行转换,并指定在连接到数据库时使用 UTF-8。

mb_internal_encoding() doesn't effect the output of your scripts per se, it effects the default encoding when using the multibyte string functions and the conversion of POST and GET inputs.

Simply set with

mbstring.internal_encoding='UTF-8'

in your php.ini file, or programmatically with:

mb_internal_encoding('UTF-8');

Speaking of the mb_ functions, you'll need to rewrite your scripts to use these, e.g. mb_strlen() instead of strlen.(), etc.

Also check what HTTP content-type headers are being outputted, though from what you've done it should be ok.

If you using a database, you'll also have to convert that too, and specify that you're using UTF-8 when connecting to it.

只涨不跌 2024-08-18 16:21:17

该文档指出您可以使用 SET 该变量

/* Set internal character encoding to UTF-8 */
mb_internal_encoding("UTF-8");

来解决您的问题:)

The documentation states that you can SET that variable using

/* Set internal character encoding to UTF-8 */
mb_internal_encoding("UTF-8");

which should get rid of your problem :)

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