0

URL に値を保持するためにルートを設定する必要があることを読みました。これは、zendframework リファレンス ガイドに示されている application.ini の例です。

routes.example.route = articles/:articleName/:page
routes.example.defaults.controller = articles
routes.example.defaults.action = view
routes.example.defaults.page = 1
routes.example.reqs.articleName = \w+
routes.example.reqs.page = \d+

上記の構成でオブジェクトをインスタンス化し、ブートストラップで使用するにはどうすればよいですか? 例:

  $route = new Zend_Controller_Router_Route(
                    'product/:id',
                    array(
                        'module' => 'default',
                        'controller' => 'product',
                        'action' => 'detail',
                     ),

    );
    $router->addRoute('product', $route);
4

1 に答える 1

0

私は、zendコントローラールータールーターが受け取る2番目の配列パラメーターが可変要件であることを理解しました。

$route = new Zend_Controller_Router_Route(
                'articles/:articleName/:page',
                array(
                    'module' => 'default',
                    'controller' => 'articles',
                    'action' => 'view',
                    'page' => 1
                 ),
               array(
                    'articleName' => '\w+',
                    'page' => '\d+'                     
                 )

);
$router->addRoute('example', $route);
于 2012-01-03T16:49:38.583 に答える