PHP获取请求的JSON数据
PHP获取请求的JSON数据实现如下
$body = file_get_contents('php://input');
$json = json_decode($body);
// 取数据 {"param": {....}}
$param = $json->{'param'};
PHP获取请求的JSON数据实现如下
$body = file_get_contents('php://input');
$json = json_decode($body);
// 取数据 {"param": {....}}
$param = $json->{'param'};