curl代理ippost php_php curl请求 (get请求,post请求,代理ip设置)

1 /**2 * get curlOpen('www.baidu.com?act=2')3 * post curlOpen('www.baidu.com',array('post'=>['name'=>'aa','age'=>1]))4 * $config['proxy']='192.168.1.1' 代理ip

* $config['ssl'] = true; https5 * $config['header']['ip'] = '255.255.255.1' 伪造ip6 * $config['cookie'] = cookie文件 模拟登录时用到7 * $config['referer']

$config['file'] = 绝对路径 $config['postname'] = 要上传图片的name $config['isupfile'] = true; 模拟表单上传文件8 */

9 function getCurl($url, $config = array())10 {11 $arr = array('file'=>'','postname'=>'','post' => false,'referer' => $url,'cookie' => '', 'useragent' => 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; customie8)', 'connectout'=>3, 'timeout' => 10, 'return' => true, 'proxy' => '', 'userpwd' => '', 'nobody' => false,'header'=>array(),'gzip'=>true,'ssl'=>false,'isupfile'=>false,'returnheader'=>false);12 $arr = array_merge($arr, $config);13 $ch =curl_init();14

15 curl_setopt($ch, CURLOPT_URL, $url);16 curl_setopt($ch, CURLOPT_RETURNTRANSFER, $arr['return']);17 curl_setopt($ch, CURLOPT_NOBODY, $arr['nobody']);18 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);19 curl_setopt($ch, CURLOPT_USERAGENT, $arr['useragent']);20 curl_setopt($ch, CURLOPT_REFERER, $arr['referer']);21 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $arr['connectout']);22 curl_setopt($ch, CURLOPT_TIMEOUT, $arr['timeout']);23 curl_setopt($ch, CURLOPT_HEADER, $arr['returnheader']);24 if($arr['gzip']) curl_setopt($ch, CURLOPT_ENCODING, 'gzip,deflate');

if(!empty($arr['file']) && !empty($arr['postname']))

{

$curl_file = curl_file_create($arr['file'],'image/jpeg');

$arr['post'][$arr['postname']] = $curl_file;

}

if($arr['ssl'])

{

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);

}

if(!empty($arr['cookie']))

{

if(substr($arr['cookie'], -4) == '.txt'){

curl_setopt($ch, CURLOPT_COOKIEJAR, $arr['cookie']);

curl_setopt($ch, CURLOPT_COOKIEFILE, $arr['cookie']);

}else{

curl_setopt($ch, CURLOPT_COOKIE, $arr['cookie']);

}

}

if(!empty($arr['proxy']))

{

curl_setopt ($ch, CURLOPT_PROXY, $arr['proxy']);

if(!empty($arr['userpwd']))

{

curl_setopt($ch,CURLOPT_PROXYUSERPWD,$arr['userpwd']);

}

}

if(!empty($arr['header']['ip']))

{

array_push($arr['header'],'X-FORWARDED-FOR:'.$arr['header']['ip'],'CLIENT-IP:'.$arr['header']['ip']);

unset($arr['header']['ip']);

}

$arr['header'] = array_filter($arr['header']);

if(!empty($arr['header']))

{

curl_setopt($ch, CURLOPT_HTTPHEADER, $arr['header']);

}

if ($arr['post'] != false)

{

curl_setopt($ch, CURLOPT_POST, true);

if(is_array($arr['post']) && $arr['isupfile'] === false)

{

$post = http_build_query($arr['post']);

}else{

$post = $arr['post'];

}

curl_setopt($ch, CURLOPT_POSTFIELDS, $post);

}

$result = curl_exec($ch);

curl_close($ch);

return $result;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值