如何在zf2

时间:2015-06-25 13:29:31

标签: php zend-framework zend-framework2

如何在我的应用程序中创建语言切换器? 我使用Zend Framework 2.

index.phtml:

<?php echo $this->translate('Users') ?>

module.config.php:

'translator' => array(
        'locale' => 'pl_PL',
        'translation_file_patterns' => array(
            array(
                'type'     => 'gettext',
                'base_dir' => __DIR__ . '/../language',
                'pattern'  => '%s.mo',
            ),
        ),
    ),

我有pl_PL.mo,一切正常,但是如何添加切换器?

0 个答案:

没有答案