http raw post 之理解

时间:2023-01-12 23:45:32

参考链接:

https://imququ.com/post/four-ways-to-post-data-in-http.html

http://blog.csdn.net/leyangjun/article/details/38726049

Content-Type 主要有4种

表单有两种:

application/x-www-form-urlencoded、

multipart/form-data

php可以直接通过$_POST方式获取。

application/json、text/xml

通过$_POST获取不到,只能通过HTTP_RAW_POST_DATA 或 php://input获取,php://input获取不到表单的application/x-www-form-urlencoded、multipart/form-data这两种内容,用HTTP_RAW_POST_DATA 最通用