php5 intl 1.1.2 LOCALE 配置/无法正常工作
我的服务器上有一份 PHP 5.2.17(在 Debian 上运行),没有安装 intl 扩展。我按照Howto:在 Debian 中构建和安装 PHP5 的 intl PECL 扩展 指南并安装了它,但是 Locale 类仍然无法正常工作。
Locale::DEFAULT_LOCALE;
为NULL
。setlocale(LC_TIME, 'en_US', 'fr_FR.UTF8', 'fr.UTF8', 'fr_FR.UTF-8', 'fr.UTF-8')
为false
code>
如果我设置 ini_set('intl.default_locale', 'cs_CZ');
并调用下一行的 Locale::DEFAULT_LOCALE;
则结果再次为 NULL
。
PHPInfo 说:
intl.default_locale = no value
intl.error_level = 0
I had a copy of PHP 5.2.17 (running on Debian) without intl extension installed on my server. I followed Howto: build and install the intl PECL extension for PHP5 in Debian guide and got it installed, however the Locale class is still not working properly.
Locale::DEFAULT_LOCALE;
isNULL
.setlocale(LC_TIME, 'en_US', 'fr_FR.UTF8', 'fr.UTF8', 'fr_FR.UTF-8', 'fr.UTF-8')
isfalse
If I setup ini_set('intl.default_locale', 'cs_CZ');
and call Locale::DEFAULT_LOCALE;
on the next line then the result is NULL
again.
PHPInfo is says:
intl.default_locale = no value
intl.error_level = 0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
安装 PHP 5.3 并使用 locales-all 软件包更新可用语言环境列表(感谢您提供该软件包!)解决了问题。
Installing PHP 5.3 and updating list of available locales with locales-all package (thank you for that package!) solved the problem.