码迷,mamicode.com
首页 > Web开发 > 详细

使用 PHP cURL 提交 JSON 数据

时间:2016-05-09 15:50:53      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

$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 cURL 提交 JSON 数据

标签:

原文地址:http://www.cnblogs.com/shanyansheng/p/5474110.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!