php中使用curl发送JSON数据_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > php中使用curl发送JSON数据

php中使用curl发送JSON数据

 2011/11/29 10:14:49  jackyrong  http://jackyrong.iteye.com  我要评论(0)
  • 摘要:在PHP中,可以使用curl去发送JSON数据,例子如下:$data=array("name"=>"Hagrid","age"=>"36");$data_string=json_encode($data);$ch=curl_init('http://api.local/rest/users');curl_setopt($ch,CURLOPT_CUSTOMREQUEST,"POST");curl_setopt($ch,CURLOPT_POSTFIELDS,$data_string)
  • 标签:PHP 使用 URL 数据 JSON JS
在PHP中,可以使用curl去发送JSON数据,例子如下:

$data = array("name" => "Hagrid", "age" => "36");                                                                    
$data_string = json_encode($data);                                                                                   
 
$ch = curl_init('http://api.local/rest/users');                                                                      
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                                                                     
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);                                                                  
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);                                                                      
curl_setopt($ch, CURLOPT_HTTPHEADER, array(                                                                          
    'Content-Type: application/json',                                                                                
    'Content-Length: ' . strlen($data_string))                                                                       
);                                                                                                                   
 
$result = curl_exec($ch);


上一篇: PHP学习笔记 02 下一篇: PHP学习笔记 01
发表评论
用户名: 匿名