gpt4 book ai didi

php - 使用 CP437 在 PHP 中打印扩展的 ASCII 字符

转载 作者:行者123 更新时间:2023-12-05 04:03:45 24 4
gpt4 key购买 nike

我需要使用 CP437 打印扩展的 ASCII 代码(例如,“É”= 144)在 PHP 中。

目前,echo utf8_encode(chr(144))只会在我的控制台中显示一个问题框(Windows 上的 Ubuntu 上的 Bash)。

使用 for ($i = 0; $i < 255, $i++) echo utf8_encode(chr($i)) ,我看到“É”实际上是201;我假设这里的代码页是 65001,使用 this ASCII table .

如何在 PHP 中使用 CP437 获取 ASCII 字符代码的字符串表示形式?

最佳答案

您可以使用 iconv将字符串从一种编码转换为另一种编码。例如,要将 chr(144) 从 cp437 转换为 utf8,您可以:

echo iconv('cp437', 'utf8', chr(144));
// output: É

如果您要将 转换为 cp437,请反转参数:

echo iconv($originalEncoding, 'cp437', $originalString);

关于php - 使用 CP437 在 PHP 中打印扩展的 ASCII 字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53381388/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com