setlocale(LC_ALL, #39;en_GB.UTF8#39;) not working on windows(setlocale(LC_ALL, en_GB.UTF8) 不适用于 Windows)
问题描述
为什么 setlocale(LC_ALL, 'en_GB.UTF8'); 在 Windows Server 2003 R2 - Zend CE PHP 5.3.5 上返回 false ?
Why does setlocale(LC_ALL, 'en_GB.UTF8'); return false on Windows Server 2003 R2 - Zend CE PHP 5.3.5 ?
有问题的函数:setlocale.
Function in question: setlocale.
推荐答案
来自 PHP 手册:
setlocale() 的返回值取决于 PHP 运行的系统.它准确返回系统 setlocale 函数返回的内容.
The return value of
setlocale()depends on the system that PHP is running. It returns exactly what the system setlocale function returns.
因此,在您的情况下,它返回 false,因为系统返回 false.您使用的区域设置可能在您的系统上不可用.
So in your case it returns false because the system returns false. It is likely that the locale you're using is not available on your system.
Windows 支持的 setlocale 字符串列表可用 此处.对于英式英语,您需要 engcode>、english-uk 或 uk.不过,Windows 不支持像 UTF-8 这样的多字节字符集;您可能最终会使用 Windows-1252.
A list of setlocale strings supported by Windows is available here. For British English you want eng, english-uk, or uk. Windows doesn't support multi-byte character sets like UTF-8 though; you will probably end up with Windows-1252.
这篇关于setlocale(LC_ALL, 'en_GB.UTF8') 不适用于 Windows的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:setlocale(LC_ALL, 'en_GB.UTF8') 不适用于 Windows
基础教程推荐
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- 如何替换eregi() 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
