使用PHP发送json文章

我有这个数据:

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

我需要张贴到JSONurl: http : //onleague.stormrise.pt : 8031/ OnLeagueRest/resources/onleague/Account/ CreditAccount

使用PHP我怎么能发送这个职位?

更新

这是一个非常古老的答案。 我发现Guzzle库非常易于在PHP中使用HTTP。


你真的需要发布JSON数据吗? 如果是这样,你正在看一个原始的HTTPpost。

我所知道的最好的方法是通过Zend Framework的HTTP客户端。

看到这里的原始post详细信息 – http://framework.zend.com/manual/en/zend.http.client.advanced.html#zend.http.client.raw_post_data

这将是类似的东西

 $data = array( 'userID' => 'a7664093-502e-4d2b-bf30-25a2b26d6021', 'itemKind' => 0, 'value' => 1, 'description' => 'Boa saudaÁ„o.', 'itemID' => '03e76d0a-8bab-11e0-8250-000c29b481aa' ); $json = json_encode($data); $client = new Zend_Http_Client($uri); $client->setRawData($json, 'application/json')->request('POST'); 

你可以使用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); 

使用任何外部依赖或库:

 $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' ); 

警告 :如果php.ini中的allow_url_fopen设置设置为Off ,这将不起作用。

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

严重使用CURL luke :),这是最好的方法之一,你得到的答复。