将文件编码从 UTF-8 更改为 ANSI

发布于 2024-09-29 17:36:52 字数 248 浏览 2 评论 0原文

我正在从一组数据创建一个 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 技术交流群。

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

发布评论

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

评论(1

似最初 2024-10-06 17:36:52

通常,ANSI 称为 Windows-1252(或 CP-1252):

$desc = iconv("ISO-8859-1", "WINDOWS-1252", $desc);

Typically, ANSI is referred to as Windows-1252 (or CP-1252):

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