What's the difference between POST and raw POST in PHP at all?

后端 未结 4 1402
情话喂你
情话喂你 2020-12-05 09:13

I have this question after reading the answer here, what\'s the difference at all?

Is it possible to submit raw POST with html ?

4条回答
  •  既然无缘
    2020-12-05 09:32

    $_POST is an associative array of the incoming POST parameters. PHP creates this for you from the raw HTTP post. If you want to deal with the raw POST data yourself (you might have some binary data sent in the POST), use $HTTP_RAW_POST_DATA.

提交回复
热议问题