我收到了以下代码片段,用于将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?
寻求帮助。