将文件编码从 UTF-8 更改为 ANSI
我正在从一组数据创建一个 xml 和 .blm 文件,我正在获取 iso-8859-1 中的文本数据并使用将其转换为 UTF-8
$desc = iconv("ISO-8859-1", "UTF-8//TRANSLIT", $desc);
这对于 XML 非常有用,但是那些获得 BLM 的人要求它是 ANSI 格式的。如何将 .blm 文件转换为 ANSI,在写入文件时是否可以执行此操作?或者在我创建文件之后?
I am creating an xml and .blm file from one set of data, I am taking text data in iso-8859-1 and converting it to UTF-8 using
$desc = iconv("ISO-8859-1", "UTF-8//TRANSLIT", $desc);
This works great for the XML, but those getting the BLM have asked that it be in ANSI. How can I convert the .blm file to ANSI, is there anyway to do it when I am writing to the file? or after I have created the file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,ANSI 称为 Windows-1252(或 CP-1252):
Typically, ANSI is referred to as Windows-1252 (or CP-1252):