Cakephp Rest Get头

yshpjwxd  于 2023-04-12  发布在  PHP
关注(0)|答案(2)|浏览(134)

我试图从json post请求中获取头内容。但我似乎无法在requesthandler中找到方法。
print_r($this->request);没有显示任何有用的内容。我试过了

$this->request['head'];

$this->request['header'];

$this->request->getHeaders;

都不管用

6yoyoihd

6yoyoihd1#

您可以使用以下命令访问标头:

$this->request->header('User-Agent');

http://book.cakephp.org/2.0/en/controllers/request-response.html#CakeRequest::header

oiopk7p5

oiopk7p52#

CakePHP 2没有
$this-〉request-〉headers()
或者类似的东西
您可以使用PHP函数getallheaders()代替。

相关问题