php接受post,"application/json"格式的问题
php接受post,"application/json"格式的问题,不能直接获取,要用下面才行,不然为空数据。
$json_string = file_get_contents("php://input");
$data = json_decode($json_string);
php接受post,"application/json"格式的问题,不能直接获取,要用下面才行,不然为空数据。
$json_string = file_get_contents("php://input");
$data = json_decode($json_string);