• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    php远程请求CURL实例教程(爬虫、保存登录状态)

    cURL

    cURL可以使用URL的语法模拟浏览器来传输数据,因为它是模拟浏览器,因此它同样支持多种协议,FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE 以及 LDAP等协议都可以很好的支持,包括一些:HTTPS认证,HTTP POST方法,HTTP PUT方法,FTP上传,keyberos认证,HTTP上传,代理服务器,cookies,用户名/密码认证,下载文件断点续传,上传文件断点续传,http代理服务器管道,甚至它还支持IPv6,scoket5代理服务器,通过http代理服务器上传文件到FTP服务器等等。

    本文主要介绍的是php远程请求CURL(爬虫、保存登录状态)的相关内容,下面话不多说了,来一起看看详细的介绍吧

    GET案例

    /**
     * curl_get
     * @param $url
     * @param null $param
     * @param null $options
     * @return array
     */
    function curl_get($url,$param = null,$options = null){
     if(empty($options)){
      $options = array(
       'timeout' 		=> 30,// 请求超时
       'header' 		=> array(),
       'cookie' 		=> '',// cookie字符串,浏览器直接复制即可
       'cookie_file' => '',// 文件路径,并要有读写权限的
       'ssl' 			=> 0,// 是否检查https协议
       'referer' 		=> null
      );
     }else{
      empty($options['timeout'])  $options['timeout'] = 30;
      empty($options['ssl'])  $options['ssl']	= 0;
     }
     $result = array(
      'code'  => 0,
      'msg'  => 'success',
      'body'  => ''
     );
     if(is_array($param)){
      $param = http_build_query($param);
     }
     $url = strstr($url,'?')?trim($url,'').''.$param:$url.'?'.$param;
     $ch = curl_init();
    
     curl_setopt($ch,CURLOPT_URL, $url);// 设置url
     !empty($options['header'])  curl_setopt($ch, CURLOPT_HTTPHEADER, $options['header']); // 设置请求头
     if(!empty($options['cookie_file'])  file_exists($options['cookie_file'])){
      curl_setopt($ch, CURLOPT_COOKIEFILE, $options['cookie_file']);
      curl_setopt($ch, CURLOPT_COOKIEJAR, $options['cookie_file']);
     }else if(!empty($options['cookie'])){
      curl_setopt($ch, CURLOPT_COOKIE, $options['cookie']);
     }
     curl_setopt($ch, CURLOPT_ENCODING, 'gzip'); //curl解压gzip页面内容
     curl_setopt($ch, CURLOPT_HEADER, 0);// 不获取请求头
     curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);// 输出转移,不输出页面
     !$options['ssl']  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, $options['ssl']); // 禁止服务器端的验证ssl
     !empty($options['referer'])  curl_setopt($ch, CURLOPT_REFERER, $options['referer']);//伪装请求来源,绕过防盗
     curl_setopt($ch, CURLOPT_TIMEOUT, $options['timeout']);
     //执行并获取内容
     $output = curl_exec($ch);
     //对获取到的内容进行操作
     if($output === FALSE ){
      $result['code'] = 1; // 错误
      $result['msg'] = "CURL Error:".curl_error($ch);
     }
     $result['body'] = $output;
     //释放curl句柄
     curl_close($ch);
     return $result;
    }
    

    POST案例

    /**
     * curl_post
     * @param $url    请求地址
     * @param null $param  get参数
     * @param array $options 配置参数
     * @return array
     */
    function curl_post($url,$param = null,$options = array()){
     if(empty($options)){
      $options = array(
       'timeout' 		=> 30,
       'header' 		=> array(),
       'cookie' 		=> '',
       'cookie_file' => '',
       'ssl' 			=> 0,
       'referer' 		=> null
      );
     }else{
      empty($options['timeout'])  $options['timeout'] = 30;
      empty($options['ssl'])  $options['ssl']	= 0;
     }
    
     $result = array(
      'code'  => 0,
      'msg'  => 'success',
      'body'  => ''
     );
     if(is_array($param)){
      $param = http_build_query($param);
     }
     $ch = curl_init();
     curl_setopt($ch, CURLOPT_URL, $url);// 设置url
     !empty($options['header'])  curl_setopt($ch, CURLOPT_HTTPHEADER, $options['header']); // 设置请求头
     if(!empty($options['cookie_file'])  file_exists($options['cookie_file'])){
      curl_setopt($ch, CURLOPT_COOKIEFILE, $options['cookie_file']);
      curl_setopt($ch, CURLOPT_COOKIEJAR, $options['cookie_file']);
     }else if(!empty($options['cookie'])){
      curl_setopt($ch, CURLOPT_COOKIE, $options['cookie']);
     }
    
    
     curl_setopt($ch, CURLOPT_ENCODING, 'gzip'); //curl解压gzip页面内容
     curl_setopt($ch, CURLOPT_POST, 1);
     curl_setopt($ch, CURLOPT_POSTFIELDS, $param);
     curl_setopt($ch, CURLOPT_HEADER, 0);// 不获取请求头
     curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);// 输出转移,不输出页面
     !$options['ssl']  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, $options['ssl']); // 禁止服务器端的验证ssl
     !empty($options['referer'])  curl_setopt($ch, CURLOPT_REFERER, $options['referer']);//伪装请求来源,绕过防盗
     curl_setopt($ch, CURLOPT_TIMEOUT, $options['timeout']);
     //执行并获取内容
     $output = curl_exec($ch);
     //对获取到的内容进行操作
     if($output === FALSE ){
      $result['code'] = 1; // 错误
      $result['msg'] = "CURL Error:".curl_error($ch);
     }
     $result['body'] = $output;
     //释放curl句柄
     curl_close($ch);
     return $result;
    }
    

    其他请求类型请自己参考封装处理

    到此这篇关于php远程请求CURL(爬虫、保存登录状态)的文章就介绍到这了,更多相关php远程请求CURL(爬虫、保存登录状态)内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • php curl发起get与post网络请求案例详解
    • 浅谈PHP模拟发送POST请求之curl基本使用
    • php的curl携带header请求头信息实现http访问的方法
    • PHP如何使用cURL实现Get和Post请求
    • php curl返回错误码60如何解决
    上一篇:php解析非标准json、非规范json的方式实例
    下一篇:WordPress伪静态规则设置代码实例
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯

    时间:9:00-21:00 (节假日不休)

    地址:江苏信息产业基地11号楼四层

    《增值电信业务经营许可证》 苏B2-20120278

    php远程请求CURL实例教程(爬虫、保存登录状态) php,远程,请求,CURL,实例,