PHP5 UTF-8 编码错误 - PHP4 工作正常

发布于 2024-08-20 13:31:53 字数 184 浏览 4 评论 0原文

我在网站上使用 UTF-8 编码时遇到一些问题。使用 PHP5 调用我的脚本,所有元音变音 (ä、ü、ö、...) 如下所示: ökflödsköl

使用 PHP4 调用脚本显示了预期的一切...

两个 php.ini 看起来都一样所以我的问题是:

是否还有其他文件可以更改输出编码?

谢谢

i'm having some troubles with UTF-8 encoding on a website. Calling my script using PHP5 all the umlauts (ä, ü, ö,...) look like this: ökflödsköl

Calling the script using PHP4 shows everything as expected...

both php.ini look the same an so my question would be:

is there an other file where i can change the output encoding?

Thanks

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

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

发布评论

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

评论(2

相对绾红妆 2024-08-27 13:31:53

您需要告诉 htmlentities 使用 UTF-8

htmlentities($foo, null, 'UTF-8');

我希望有帮助:)

You need to tell htmlentities to use UTF-8

htmlentities($foo, null, 'UTF-8');

I hope that helps :)

沙与沫 2024-08-27 13:31:53

新状态:如果我删除 htmlentities() ,一切看起来都很棒......

New Status: if i remove htmlentities() it all looks great...

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