file_get_contents post json返回空字符串

时间:2017-10-22 20:54:39

标签: php json post file-get-contents

我收到了以下代码片段,用于将json代码发送到我的远程服务器:

    public static function report() {
    $data = json_encode(self::getStats());

    $options = array(
        'http' => array(
            'header'  => 'Content-type: application/json' . "\r\n"
            . 'Content-Length: ' . strlen($data) . "\r\n",
            'method'  => 'POST',
            'content' => $data
        )
    );

    $context  = stream_context_create($options);
    $result = file_get_contents(self::$report_url, false, $context);
    if ($result === false) {
        return false;
    }

    return true;
}

而且,在远程服务器(我收到数据的地方)上,我得到了以下代码:

$request = file_get_contents('php://input');
$data = json_decode($request, true);

var_dump($data);

但是,输出为NULL或空字符串。

此行返回空字符串:

$request = file_get_contents('php://input');

函数self :: getStats()返回正确的数组,我测试过了。所以它不应该是NULL?

寻求帮助。

0 个答案:

没有答案