如何使用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
。
请分享您的经验。