当前位置:首页 > PHP教程 > php函数 > 列表

PHP 传输会话curl函数的实例详解

发布:smiling 来源: PHP粉丝网  添加日期:2018-09-09 13:42:31 浏览: 评论:0 

PHP 传输会话curl函数的实例详解

前言:接手公司项目PC端负责人的重担,责任担当重大;从需求分析,画流程图,建表,编码,测试修bug,上线维护等我一个光杆司令一人完成(当然还有一个技术不错的前端配合,感谢主管的帮助),虽然累点加班多点但感觉还行吧,公司都是一个鸟样。

闲话不多说了,因为项目中经常需要调取java那边的接口,既然涉及到请求接口那就有了http的请求方式,PHP常见的是GET/POST两种当然还有其他的比如put等,java那边经常用到GET/POST/PUT/DELETE等方式,请求接口当然要用到curl的相关函数了,都是看文档调试的希望大家都看文档,下面是我封装好的相关函数等(大概总结下,已调通):

示例代码:

  1. private $serverhost = "https://demo.xxx.cn"; //测试 
  2.     /** 
  3.      * 请求接口封装  get/post/put/delete等 
  4.      * access public 
  5.      * @param string $url 接口地址 
  6.      * @param string $params 参数 
  7.      * @param string $type 类型 get/post/put/delete 
  8.      * @return bool/array 
  9.      */ 
  10.      public function getcurldata($url,$params,$type="get"){ 
  11.         $url = $this->serverhost.$url
  12.    
  13.         $response = array(); 
  14.         if($type == 'get'){ //get请求 
  15.           //请求头可以加其他设置 
  16.           $headers = array
  17.               'Content-type: application/json;charset=UTF-8'
  18.           ); 
  19.           $ch = curl_init(); 
  20.           curl_setopt($ch, CURLOPT_URL, $url); 
  21.           curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
  22.           curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE); 
  23.           curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); 
  24.           curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); 
  25.           $response = curl_exec($ch); 
  26.    
  27.        }elseif ($type == 'post'){  //post请求 
  28.    
  29.          $headers = array
  30.             'Content-type: application/json;charset=UTF-8'
  31.          ); 
  32.          $ch = curl_init(); 
  33.          curl_setopt($ch, CURLOPT_URL, $url); 
  34.          curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
  35.          curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE); 
  36.          curl_setopt($ch, CURLOPT_POST, true);  //注意这几行 
  37.          curl_setopt($ch, CURLOPT_POSTFIELDS, $params); //注意这几行 
  38.          //curl_setopt($ch, CURLOPT_HEADER, true); 
  39.          curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); 
  40.          curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); 
  41.          $response = curl_exec($ch); 
  42.    
  43.        }elseif ($type == 'put'){ //put请求 
  44.    
  45.           $headers = array
  46.                'Content-type: application/json;charset=UTF-8'
  47.           ); 
  48.    
  49.           $ch = curl_init(); 
  50.           curl_setopt($ch, CURLOPT_URL, $url); 
  51.           curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
  52.           curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE); 
  53.           curl_setopt($ch, CURLOPT_PUT, true); //注意这几行 
  54.           curl_setopt($ch, CURLOPT_POSTFIELDS, $params); 
  55.           //curl_setopt($ch, CURLOPT_HEADER, true); 
  56.           curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); 
  57.           curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); 
  58.           $response = curl_exec($ch); 
  59.        } 
  60.    
  61.        return $response
  62.     }  
  63.  //如何调用上面代码 
  64.    //get方式 
  65.    /** 
  66.     * 查询我创建过的班级 
  67.     * @param string $url 接口地址 
  68.     * @param string $params 参数 
  69.     * @param string $type 类型 get 
  70.     * @return array 
  71.    */ 
  72.     public function mycreateclass($userid){ 
  73.    
  74.        $url = "/xxx/xxxx/xxxx/".$userid//请求地址拼接 
  75.        $response = $this->getcurldata($url,array(),"get"); 
  76.        $createdclass = json_decode($response, true); //返回json格式数据 
  77.    
  78.        return $createdclass
  79.     } 
  80.     /** post方式请求 
  81.      * 用户登录判断 
  82.      * access public 
  83.      * @param string $username 用户名 
  84.      * @param string $password 密码 
  85.      * @return bool 
  86.     */ 
  87.     public function getlogin($username,$password
  88.     { 
  89.        //要post的数据 
  90.        $params = array
  91.           "username"   => $username
  92.           "password"   => $password 
  93.        ); 
  94.       $params = json_encode($params, 64|256); 
  95.       $uri = "/xxx/xxx/login"
  96.       $response = $this->getcurldata($uri,$params,"post"); 
  97.       $result = json_decode($response, true); 
  98.    
  99.       return $result ; 
  100.     } 
  101.        
  102.      /*身份转换--put 请求 
  103.       */ 
  104.      public function changeuserole($token){ 
  105.          //要put的数据 
  106.         $params = array(); 
  107.         $params = json_encode($params, 64|256); 
  108.    
  109.         $uri = "/xxx/xxx/xxx/".$token."/"
  110.         $response = $this->getcurldata($uri,$params,"put"); 
  111.         $result = json_decode($response, true); 
  112.    
  113.         //dump($result);die; 
  114.    
  115.         return $result
  116.      } 
  117.  //还有一个delete方式 大家自己参考文档调试下吧 
  118. 上面3个请求方式都是单次请求(即请求一次)*************** 
  119. PHP自带函数curl_multi_get_contents函数(thinkphp自带此函数,可以微调下): 
  120.      /**  
  121.       * 批量发起请求 已调通 
  122.       * curl multi POST数据 
  123.       * */ 
  124.      public function curl_multi_get_contents($url=array(), $param = array(), $timeout=1000){ 
  125.          $userAgent = 'Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1)'
  126.          $headers = array
  127.             'Content-type: application/json;charset=UTF-8'
  128.          ); 
  129.          $curl_array=array(); 
  130.          $mh = curl_multi_init(); 
  131.          foreach($url as $uk=>$uv){ 
  132.             $curl_array[$uk] = curl_init(); 
  133.          } 
  134.          unset($uk,$uv); 
  135.          foreach($url as $uk=>$uv) { 
  136.              $options = array
  137.                 CURLOPT_URL   => $uv
  138.                 CURLOPT_TIMEOUT => $timeout
  139.                 CURLOPT_RETURNTRANSFER => true, 
  140.                 CURLOPT_DNS_CACHE_TIMEOUT => 86400, 
  141.                 CURLOPT_DNS_USE_GLOBAL_CACHE  => true, 
  142.                 CURLOPT_SSL_VERIFYPEER => 0, 
  143.                 CURLOPT_HEADER => false, 
  144.                 CURLOPT_USERAGENT  => 'Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)'
  145.                 CURLOPT_HTTPHEADER => $headers
  146.              ); 
  147.          if (isset($param[$uk])) { 
  148.              foreach ($param[$ukas $_k => $_v) { 
  149.                 //$options[$_k] = $_v; 
  150.                 $optionsparam[$_k] = $_v
  151.                 $options[CURLOPT_POSTFIELDS] = json_encode($optionsparam, 64|256); 
  152.              } 
  153.           } 
  154.    
  155.          curl_setopt_array($curl_array[$uk], $options); 
  156.          curl_multi_add_handle($mh$curl_array[$uk]); 
  157.          unset($options); 
  158.       } 
  159.       unset($uk,$uv); 
  160.       $running = NULL; 
  161.       do { 
  162.            curl_multi_exec($mh,$running); 
  163.        } while($running > 0); 
  164.    
  165.        $res = array(); 
  166.        foreach($url as $uk=>$uv){ 
  167.             $res[$uk] = curl_multi_getcontent($curl_array[$uk]); 
  168.        } 
  169.        unset($uk,$uv); 
  170.        foreach($url as $uk=>$uv){ 
  171.            curl_multi_remove_handle($mh$curl_array[$uk]); 
  172.        } 
  173.       unset($url,$curl_array,$uk,$uv); 
  174.       curl_multi_close($mh); 
  175.       return $res
  176.    } 
  177.  //如何调用--批量发起请求 
  178.     //批量请求加入班级 
  179.     public function batchjoinclass($token,$batchjoinclass){ 
  180.         $urlarr = $param = $returndata = array(); 
  181.    
  182.         $param = $batchjoinclass//二维数组 格式如下 
  183.    
  184.         /* 
  185.          $param[1]['name'] = '班级新1'; 
  186.          $param[1]['iamge'] = 'xxx11.png'; 
  187.          $param[1]['iamgeType'] = 'CUSTOM'; 
  188.          $param[2]['name'] = '班级新2'; 
  189.          $param[2]['iamge'] = 'xxx.png'; 
  190.          $param[2]['iamgeType'] = 'CUSTOM'; 
  191.        */ 
  192.    
  193.        //获取请求url 
  194.        foreach($batchjoinclass as $key=>$val){ 
  195.            $urlarr[$key] = $this->serverhost."/xxx/xxxx/xxxx/".$token
  196.         } //phpfensi.com 
  197.    
  198.         $res = $this->curl_multi_get_contents($urlarr,$param); 
  199.    
  200.         //<a href="http://www.111cn.net/zhuanti/geshihua/" class="anchor" target="_blank">格式化</a>返回数据 
  201.         foreach($res as $key=>$val){ 
  202.             $returndata[$key] = json_decode($val,true); 
  203.         } 
  204.    
  205.         return $returndata
  206.     } 

Tags: 函数 实例 curl函数

分享到: