chuk-shirley/laminas-no-intl

Laminas MVC模块,适用于没有国际化扩展的php安装

0.1.1 2020-07-08 21:23 UTC

This package is auto-updated.

Last update: 2024-09-09 07:01:59 UTC


README

Laminas MVC模块,适用于没有i18n扩展的php安装

安装

$ composer require chuk-shirley/laminas-no-intl

配置

安装此包后,您需要将模块添加到您的模块配置中。这通常位于 /config/modules.config.php。请确保此模块在 Laminas\I18n 之后列出。

return [
    // ... other modules
    'Laminas\I18n',
    'NoIntl',
];

如果您想使用除了 en_US_POSIX 之外的区域设置,您需要将配置文件从 /config/no_intl.global.php.dist 复制到您的应用程序本地配置目录,移除 .dist 后缀,并在配置数组中指定您的区域设置。

return [
    'no_intl' => [
        'default_locale' => 'en_US_POSIX', // Rename to different locale (e.g. fr-CA, fr-FR, etc.)
    ],
];