使用php发送json帖子

时间:2011-06-02 10:47:06

标签: php json post curl http-post

我有这些数据:

{ 
    userID: 'a7664093-502e-4d2b-bf30-25a2b26d6021',
    itemKind: 0,
    value: 1,
    description: 'Boa saudaÁ„o.',
    itemID: '03e76d0a-8bab-11e0-8250-000c29b481aa'
}

我需要发布到json url: http://domain/OnLeagueRest/resources/onleague/Account/CreditAccount

使用php 我该如何发送此帖子请求?

4 个答案:

答案 0 :(得分:127)

您可以将CURL用于此目的,请参阅示例代码:

$url = "your url";    
$content = json_encode("your data to be sent");

$curl = curl_init($url);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER,
        array("Content-type: application/json"));
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $content);

$json_response = curl_exec($curl);

$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);

if ( $status != 201 ) {
    die("Error: call to URL $url failed with status $status, response $json_response, curl_error " . curl_error($curl) . ", curl_errno " . curl_errno($curl));
}


curl_close($curl);

$response = json_decode($json_response, true);

答案 1 :(得分:95)

不使用使用任何外部依赖项或库:

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

$context  = stream_context_create( $options );
$result = file_get_contents( $url, false, $context );
$response = json_decode( $result );

$ response 是一个对象。可以像往常一样访问属性,例如 $响应 - > ...

其中 $ data 是包含数据的数组:

$data = array(
  'userID'      => 'a7664093-502e-4d2b-bf30-25a2b26d6021',
  'itemKind'    => 0,
  'value'       => 1,
  'description' => 'Boa saudaÁ„o.',
  'itemID'      => '03e76d0a-8bab-11e0-8250-000c29b481aa'
);

警告:如果 allow_url_fopen 设置在php.ini中设置为 Off ,则无效。

如果您正在为 WordPress 进行开发,请考虑使用提供的API:http://codex.wordpress.org/HTTP_API

答案 2 :(得分:0)

严肃地使用CURL luke :),这是最好的方法之一,你得到的回应。

答案 3 :(得分:0)

请注意,当服务器在HTTP标头中返回 Connection:close 时, file_get_contents 解决方案并不会像应该关闭连接那样关闭连接。

另一方面,CURL解决方案终止了连接,因此不会通过等待响应来阻止PHP脚本。