0

我正在尝试在我的本地服务器上以 PHP 发布一些 JSON 数据。我在下面有以下代码,但它不起作用。我错过了重要的事情吗?

    $url = 'http://localhost/mmcv/chart1.php';

    //open connection
    $ch = curl_init();

    curl_setopt($ch, CURLOPT_URL,$url);        
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                                                                     
    curl_setopt($ch, CURLOPT_POSTFIELDS, $json);                                                                  
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);                                                                      
    curl_setopt($ch, CURLOPT_HTTPHEADERS,array('Content-Type: application/json'));  


    $result = curl_exec($ch);
4

2 回答 2

1
curl_setopt($ch, CURLOPT_HTTPHEADERS,array('Content-Type: application/json'));

即使您发布 json,您仍然必须以 url 编码形式发送数据,所以发送它就像

curl_setopt($ch, CURLOPT_HTTPHEADERS,array('Content-Type: application/x-www-form-urlencoded'));

并使用

curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

代替

curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                                                                     
    curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
于 2013-02-14T14:15:28.937 回答
1

也许您的问题出在接收脚本中。在“mmcv/chart1.php”中尝试以下操作:

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

if(is_string($rawInput)) {
    if(!is_null($jsonInput = json_decode($rawInput, true)))
        $_POST = $jsonInput;
}
于 2013-02-14T14:44:16.400 回答