我正在使用PHP接收JSON数据
我使用file_get_contents("php://input")
但doesn't
正在使用
它返回String(0);。
这是我的代码:
echo $content = file_get_contents("php://input");
//Attempt to decode the incoming RAW post data from JSON.
$decodedarray = json_decode($content, true);
我查看了我的php.ini文件,allow_url_fopen返回1.
我不知道自己做错了什么。