1 回答
TA贡献1793条经验 获得超6个赞
在搜索了大量有关 nikic/FastRoute post 请求的信息后,对代码进行了以下更改。
$_POST = json_decode(file_get_contents('php://input' ),true);
$dispatcher = FastRoute\simpleDispatcher(function(FastRoute\RouteCollector $r) {
$r->addRoute('POST', '/login', 'Test/put');
$r->addRoute('GET', '/users/{id:\d+}', 'Test/put');
});
$httpMethod = $_SERVER['REQUEST_METHOD'];
$uri = $_SERVER['REQUEST_URI'];
if (false !== $pos = strpos($uri, '?')) {
$uri = substr($uri, 0, $pos);
}
$uri = rawurldecode($uri);
$httpMethod = $_SERVER['REQUEST_METHOD'];
$routeInfo = $dispatcher->dispatch($httpMethod, $uri);
switch ($routeInfo[0]) {
case FastRoute\Dispatcher::FOUND:
$handler = $routeInfo[1];
$vars = ($httpMethod == 'POST')? $_POST : $routeInfo[2];;
list($class, $method) = explode("/", $handler, 2);
call_user_func_array(array(new $class, $method), $vars);
break;
}
class Test {
public function put() {
return "Check";
}
}
- 1 回答
- 0 关注
- 92 浏览
添加回答
举报