如何获得Slim 2 中的所有 get/ put/ post
变量,例如 Slim 3?
苗条2,
$allGetVars = $app->request->get();
$allPutVars = $app->request->put();
$allPostVars = $app->request->post();
我怎样才能在 Slim 3 中做到这一点?
并且,例如,http://example.com/books/1?title=hello&content=world
我现在如何在 Slim 3title
中获取参数?content
苗条2,
$title = $app->request->get('title');
$content = $app->request->get('content');
我怎样才能在 Slim 3 中做到这一点?