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; https
5 * $config['header']['ip'] = '255.255.255.1' 伪造ip 6 * $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;
}

 

内容来源于网络如有侵权请私信删除
你还没有登录,请先登录注册
  • 还没有人评论,欢迎说说您的想法!

相关课程