如何将PHP中的任何编码字符串的字符编码转换为UTF-8?

发布于 2024-11-08 12:07:51 字数 157 浏览 0 评论 0原文

我需要将字符串 str 的字符编码从 PHP 中的任何编码转换为 UTF-8。

这段代码: $string = mb_convert_encoding($sring, "utf-8", "auto"); 有时会返回警告:“mb_convert_encoding():无法检测字符编码”

I need to convert the character encoding of string str to UTF-8 from any encoding in PHP.

This code:
$string = mb_convert_encoding($sring, "utf-8", "auto");
sometimes returns warning: "mb_convert_encoding(): Unable to detect character encoding"

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

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

发布评论

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

评论(1

百变从容 2024-11-15 12:07:51

不可能 100% 正确地猜测任意文本的字符集。检查源代码以获取有关字符集的线索(META 标记、HTTP 标头等)。

It is impossible to correctly guess the charset for any arbitrary text 100% of the time. Examine the source for clues to the charset (META tag, HTTP header, etc.).

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