超薄框架v3路线条件

时间:2016-03-13 21:16:13

标签: php routes slim

在Slim v2中我们有这些条件来定义路线

$app->get('/:route', function($route) use($app) {
    //Code goes here
})->conditions(array('route' => 'route1|route2|route3'));

我的问题是,如何在Slim v3中复制这个? 谢谢

1 个答案:

答案 0 :(得分:12)

Slim 3使用FastRoute,因此格式为:{name:regular expression conditional}

在您的情况下,您需要:

$app->get('/{route:route1|route2|route3}', function($request, $response, $args) {
    $route = $args['route'];
    // code here
});