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
基础教程推荐
- 使用 PDO 转义列名 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01