Http\Request->rawContent
获取原始的POST
包体,用于非application/x-www-form-urlencoded
格式的Http POST
请求。
string Http\Request->rawContent();
- 返回原始
POST
数据,此函数等同于PHP的fopen('php://input')
有些情况下服务器不需要解析Http POST
请求参数,1.7.18
以上版本增加了http_parse_post
配置,可以关闭POST
数据解析。