PHP5 UTF-8 编码错误 - PHP4 工作正常
我在网站上使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要告诉 htmlentities 使用 UTF-8
我希望有帮助:)
You need to tell htmlentities to use UTF-8
I hope that helps :)
新状态:如果我删除
htmlentities()
,一切看起来都很棒......New Status: if i remove
htmlentities()
it all looks great...