0

我正在尝试使用下面的函数通过 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 的机器上工作,但在另一台机器上却不行。服务器配置可能与它有关吗?

4

2 回答 2

0

我相信原因是因为您编码数据和设置内容类型的方式。

如果您想使用Content-type: application/json发送它,请不要对数据进行urlencode

有关application/jsonapplication/x-www-form-urlencoded之间的区别,请参见此处

于 2013-04-03T18:30:22.720 回答
0

问题是$contentfromdoPostRequest($url, $content);不是 UTF-8 编码的,并且有一些奇怪的字符,因此json_decode被破坏了。

按照json_decode男人的说法:

此函数仅适用于 UTF-8 编码的字符串。

于 2014-12-01T23:35:45.090 回答