如何使用 Iconv 将任何可能的格式转换为 UTF-8?

发布于 2024-09-01 04:51:05 字数 183 浏览 4 评论 0原文

例如,这会将 1251 转换为 utf-8。

$utf8 = iconv('windows-1251', 'utf-8', $ansi);

但是如何将未知(当涉及到我们时,我们还不知道它是什么格式)(通常是任何格式)格式(可能由 Iconv 已知)转换为 utf-8 ? (代码示例)

so for example this will turn 1251 into utf-8.

$utf8 = iconv('windows-1251', 'utf-8', $ansi);

But how to turn unknown (when it comes to us we do not know yet what format it is) ( in general any ) format (possibly known by Iconv ) to utf-8? (code sample)

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

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

发布评论

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

评论(2

苏璃陌 2024-09-08 04:51:05

您无法从未知的字符集进行翻译,您能做的最好的事情就是猜测实际的字符集并将该猜测用作第一个参数 - 您可以使用 mb_detect_encoding() 用于此目的。

You cannot translate from an unknown character set, the best you can do is make a guess about the actual charset and use that guess as first parameter - you can use mb_detect_encoding() for that purpose.

绝影如岚 2024-09-08 04:51:05

我已经用字符串的值编写了一个数组。你只需要这样做:

$string = str_replace("“","",$string);
$string = str_replace("â€Â","",$string);

他们就消失了!

I have written an array with the values of the string. You just need to do this:

$string = str_replace("“","",$string);
$string = str_replace("â€Â","",$string);

And they are gone!

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