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 關注
- 131 瀏覽
添加回答
舉報