如何从PHP中的HTTP标头读取JSON消息

时间:2016-04-16 02:29:48

标签: php json http-headers

我正在从一个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消息?感谢。

1 个答案:

答案 0 :(得分:1)

$req_json = file_get_contents('php://input');
echo $req_json;

more info