cmd的字符集
C:\Users\Kolink>php -r "echo 'é';"
Ú
C:\Users\Kolink>echo é
é
正如您所看到的,输出 é
的程序会产生 Ú
,但使用 echo
命令会给出所需的字符。
并且,我可以配置 PHP(也许是脚本开头的某个命令)来输出正确的字符吗?
C:\Users\Kolink>php -r "echo 'é';"
Ú
C:\Users\Kolink>echo é
é
As you can see, a program outputting an é
results in a Ú
, but using the echo
command gives the desired character.
And, can I configure PHP (maybe some command at the start of the script) to output the correct character?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CMD.exe 在与 PHP 不同的代码页中工作。顺便说一句,它也是与默认 Windows 代码页不同的代码页。这是为了与旧版 MS-DOS 程序兼容。在我的国家/地区,Windows 使用 Windows-1250,cmd.exe 使用 DOS Latin2。我想在英国这将分别是 Windows-1252 和 DOS Latin1。
要获得相同的结果,您必须在 PHP 和 cmd.exe 中使用相同的代码页。检查 PHP 使用的代码页并将 cmd.exe 设置为相同的代码页。为此,请使用以下命令:
mode con cp select=
或chcp
。这将仅更改 cmd.exe 当前实例的代码页。以下是一些典型代码页及其编号的简短列表:
正如 @Christophe Weis 在评论中指出的那样,您可以在 代码页标识符页。
CMD.exe works in a different codepage than PHP. By the way, it is also a different codepage than the default Windows codepage. This is for compatibility with older MS-DOS programs. In my country Windows uses Windows-1250 and cmd.exe uses DOS Latin2. I suppose in the UK this would be Windows-1252 and DOS Latin1 respectively.
To get the same results you have to use the same codepage in PHP and in cmd.exe. Check what codepage is used by PHP and set cmd.exe to the same codepage. To do this, use the following command:
mode con cp select=<codepagenumber>
orchcp <codepagenumber>
. This will change the codepage only for the current instance of cmd.exe.Here is a short list of some typical codepages and their numbers:
As @Christophe Weis pointed out in comments, you can lookup the identifiers of other code pages at Code page identifiers page.