3

在 Kohana 你可以像这样测试路线

$route = Route::get('admin');
echo Kohana_Debug::dump($route->matches('admin/user/edit/10'));

以及如何在 symfony2 中测试路由。

4

1 回答 1

7

您是否尝试过控制台命令?看看文档页面文档页面

php app/console router:debug
php app/console router:debug article_show
php app/console router:match /blog/my-latest-post
于 2013-07-24T08:30:26.800 回答