如何使用HttpFoundation获取PUT参数

时间:2018-03-16 12:30:02

标签: php put symfony-http-foundation

如何使用HttpFoundation组件(没有Symfony)获取 PUT 身体参数? 根据文档Request::createFromGlobals仅关于POST,GET ......但不是PUT。所以在这里我不能像$request->request->all()一样使用,它将是空的。

我相信有更好的方式

$request = Request::createFromGlobals;
$content = $request->getContent();
// Parsing $content

这样json_decode($request->getContent(), true);会返回null

请分享您的经验。

0 个答案:

没有答案