gpt4 book ai didi

httprequest - Silex中间件中获取请求方法

转载 作者:行者123 更新时间:2023-12-02 21:49:48 27 4
gpt4 key购买 nike

是否可以在中间件函数中获取请求方法(GET、POST、PUT...)?

$myMiddleware = function (Request $request) {
// This is what I want to achieve
switch ($request->request->get('method') {
case 'GET':
// ...
break;
}
}

$app = new Application();
$app->before($myMiddleware);

最佳答案

感谢普特万德。很简单:

$request->getMethod();

关于httprequest - Silex中间件中获取请求方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18176267/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com