if($type=='post'){
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch,CURLOPT_POSTFIELDS,$arr);
}
//3.采集
$output = curl_exec($ch);
//4.关闭
curl_close($ch);
if(curl_errno($ch)){
var_dump(curl_errno($ch));
exit;
}
if($res=='json'){
return json_decode($output,true);
}
}
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch,CURLOPT_POSTFIELDS,$arr);
}
//3.采集
$output = curl_exec($ch);
//4.关闭
curl_close($ch);
if(curl_errno($ch)){
var_dump(curl_errno($ch));
exit;
}
if($res=='json'){
return json_decode($output,true);
}
}
2016-10-05
//获取curl
/*
*$user 接口url
*$type 请求类型
*$res 返回数据类型
*$arr post请求参数
*/
function get_curl($url,$type='get',$res='json',$arr=''){
//1.初始化curl
$ch = curl_init();
//2.设置curl的参数
curl_setopt($ch, CURLOPT_URL, $url);//设置curl
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//返回
/*
*$user 接口url
*$type 请求类型
*$res 返回数据类型
*$arr post请求参数
*/
function get_curl($url,$type='get',$res='json',$arr=''){
//1.初始化curl
$ch = curl_init();
//2.设置curl的参数
curl_setopt($ch, CURLOPT_URL, $url);//设置curl
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//返回
2016-10-05