当前位置:Gxlcms > PHP教程 > PHP快速需求路由:FastRoute

PHP快速需求路由:FastRoute

时间:2021-07-01 10:21:17 帮助过:25人阅读

FastRoute 提供了一个快速实现基于路由的规则表达。

示例代码:

addRoute('GET', '/user/{id:\d+}', 'handler1');    $r->addRoute('GET', '/user/{id:\d+}/{name}', 'handler2');    // Or alternatively    $r->addRoute('GET', '/user/{id:\d+}[/{name}]', 'common_handler');});$routeInfo = $dispatcher->dispatch($httpMethod, $uri);switch ($routeInfo[0]) {    case FastRoute\Dispatcher::NOT_FOUND:        // ... 404 Not Found        break;    case FastRoute\Dispatcher::METHOD_NOT_ALLOWED:        $allowedMethods = $routeInfo[1];        // ... 405 Method Not Allowed        break;    case FastRoute\Dispatcher::FOUND:        $handler = $routeInfo[1];        $vars = $routeInfo[2];        // ... call $handler with $vars        break;}

项目主页:http://www.open-open.com/lib/view/home/1437228582428

人气教程排行