如何使用 Iconv 将任何可能的格式转换为 UTF-8?
例如,这会将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法从未知的字符集进行翻译,您能做的最好的事情就是猜测实际的字符集并将该猜测用作第一个参数 - 您可以使用
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.我已经用字符串的值编写了一个数组。你只需要这样做:
他们就消失了!
I have written an array with the values of the string. You just need to do this:
And they are gone!