这是一个路由示例,取自此页面:
$route = new Zend_Controller_Router_Route_Regex(
'blog/archive/(\d+)-(.+)\.html',
array(
'controller' => 'blog',
'action' => 'view'
),
array(
1 => 'id',
2 => 'description'
),
'blog/archive/%d-%s.html'
);
$router->addRoute('blogArchive', $route);
我可以看到它匹配遵循 pattern 的路径'blog/archive/(\d+)-(.+)\.html'
,重定向到blog
控制器和view
操作,并传递id
anddescription
参数。但是,第四个论点的目的是什么?'blog/archive/%d-%s.html'
?