gpt4 book ai didi

symfony - 如何在 symfony 中获取请求 header value

转载 作者:行者123 更新时间:2023-12-03 12:09:24 27 4
gpt4 key购买 nike

我在我的应用程序中使用 symfony 框架来制作休息 Web 服务。我想在 Controller 方法中获取请求 header 值。有什么方法可以实现它。

最佳答案

您需要将 Request 对象传递给 Controller ​​方法,然后在 Controller 中使用 $request->headers->all()
例如:

public function testAction(Request $request)
{
$headers = $request->headers->all();
}

您还可以通过调用 $this->getRequest() 从 Controller 获取请求对象。从 Controller 方法。

关于symfony - 如何在 symfony 中获取请求 header value ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24545573/

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