|
@@ -127,8 +127,11 @@ function curl_get($url)
|
|
|
function curl_post($url,$post_data)
|
|
|
{
|
|
|
// 1. 初始化一个cURL会话
|
|
|
+ //根据API的要求,定义相对应的Content-Type
|
|
|
+ array_push($headers, "Content-Type".":"."application/json");
|
|
|
$ch = curl_init();
|
|
|
// 2. 设置请求选项, 包括具体的url
|
|
|
+ curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
|
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
|
|
// 设置请求为post类型
|
|
@@ -141,7 +144,6 @@ function curl_post($url,$post_data)
|
|
|
// 4. 释放cURL句柄,关闭一个cURL会话
|
|
|
curl_close($ch);
|
|
|
return json_decode($response,true);
|
|
|
-
|
|
|
}
|
|
|
|
|
|
|