我正在从一个PHP文件向另一个PHP文件发送JSON请求。
$curl = curl_init();
curl_setopt($curl,CURLOPT_URL, "http://localhost/2.php");
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl,CURLOPT_POSTFIELDS, $req_json);
curl_setopt($curl, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Content-Length: ' . strlen($req_json))
);
//execute post
$res_json = curl_exec($curl);
//close connection
curl_close($curl);
我只是想把JSON请求发送到这个2.php
$req_json = stream_get_contents("php://input");
echo $req_json;
但是,我收到以下错误。
警告:stream_get_contents()要求参数1为资源,字符串在
中给出
有谁能告诉我如何从HTTP正文获取JSON消息?感谢。