5

私のアプリケーション翻訳では、言語構造を使用したいと考えています。

  • サイト.com (英語)
  • site.com/de/ (ドイツ語)
  • site.com/fr/ (フランス)
  • site.com/nl/ (オランダ語)

等..

'[az]{2}' のように Literal のルーター オプションを使用してこれを簡単に行うことができますが、サポートしていない言語を除外したいです。これを正規表現で修正する(サポートされている言語を追加する)が、何か(わからない)がうまくいかなかった。

前もって感謝します!

'router' => array(
        'routes' => array(
            'home' => array(
                'type' => 'Literal',
                'options' => array(
                    'route'    => '/',
                    'defaults' => array(
                        'controller' => 'Application\Controller\Index',
                        'action'     => 'index',
                    ),
                ),
                'may_terminate' => true,
                'child_routes' => array(
                    'language' => array(
                        'type'    => 'Regex',
                        'options' => array(
                            'regex'    => '/(?<lang>(de|fr|nl))?',
                            'defaults' => array(
                                'lang' => 'en', //default
                            ),
                            'spec' => '/%lang%',
                        ),
                    ),
                ),
            ),
        ),
    ),
4

1 に答える 1

6

あなたの正規表現は

'regex'    => '/(?<lang>(de|fr|nl)?)'

セグメントルートと適切な制約で同じことができます...

'router' => array(
    'routes' => array(
        'home' => array(
            'type' => 'Literal',
            'options' => array(
                'route'    => '/',
                'defaults' => array(
                    'controller' => 'Application\Controller\Index',
                    'action'     => 'index',
                ),
            ),
            'may_terminate' => true,
            'child_routes' => array(
                'language' => array(
                    'type'    => 'Segment',
                    'options' => array(
                        'route' => '[/:lang]',
                        'defaults' => array(
                            'lang' => 'en', //default
                        ),
                        'constraints' => array(
                            'lang' => '(en|de|fr|nl)?',
                        ),
                    ),
                ),
            ),
        ),
    ),
),
于 2013-05-22T12:44:32.397 に答える