我正在尝试使用下面的函数通过 fopen 通过 POST 发送一些 JSON 数据。
function doPostRequest($url, $data, $optional_headers = null)
{
$params = array(
'http' => array(
'method' => 'POST',
'content' => $data,
'header' => 'Content-type: application/json' . "\r\n"
. 'Content-Length: ' . strlen($data) . "\r\n"
)
);
if ($optional_headers !== null) {
$params['http']['header'] = $optional_headers;
}
$ctx = stream_context_create($params);
try {
$fp = fopen($url, 'rb', false, $ctx);
$response = stream_get_contents($fp);
} catch (Exception $e) {
echo 'Exception: ' . $e->getMessage ();
}
return $response;
}
$json_data = array(
'first_name' => 'John',
'last_name' => 'Doe'
);
$content = urlencode(json_encode($json_data));
doPostRequest($url, $content);
我没有收到任何错误,但是当我尝试解码数据时,$input_stream
它是空的。为什么?我错过了什么?
$input_stream = file_get_contents('php://input');
$json = urldecode($input_stream);
var_dump($input_stream);
编辑:我应该提到代码在安装了 XAMPP 的机器上工作,但在另一台机器上却不行。服务器配置可能与它有关吗?