在PHP中读取请求有效负载

时间:2018-08-13 19:57:34

标签: php post request payload

如何使用PHP读取请求有效载荷(POST)的内容?

我正在使用Angular应用程序发送POST。

我尝试使用:$_POST$_FILESfile_get_contents('php://input') ...

没有工作。

2 个答案:

答案 0 :(得分:1)

如果您需要查看x-www-form-urlencoded帖子数据,只需使用

print_r($_POST);

如果您需要查看json发布数据,请使用此

$data=json_decode(file_get_contents('php://input'),1);
print_r($data);

答案 1 :(得分:0)

尝试:

$payload = file_get_contents('php://input');