当前位置:首页 > PHP教程 > php应用 > 列表

php使用curl获取https请求的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-11 11:40:22 浏览: 评论:0 

这篇文章主要介绍了php使用curl获取https请求的方法,涉及curl针对https请求的操作技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了php使用curl获取https请求的方法。分享给大家供大家参考。具体分析如下:

今日在做一个项目,需要curl获取第三方的API,对方的API是https方式的。

之前使用curl能获取http请求,但今天获取https请求时,出现了以下的错误提示:证书验证失败。

SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

解决方法为在curl请求时,加入:

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // 跳过证书检查

curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, true);  // 从证书中检查SSL加密算法是否存在

curl https请求代码:

  1. <?php  
  2. /** curl 获取 https 请求 
  3. * @param String $url        请求的url 
  4. * @param Array  $data       要發送的數據 
  5. * @param Array  $header     请求时发送的header 
  6. * @param int    $timeout    超时时间,默认30s 
  7. */  
  8. function curl_https($url$data=array(), $header=array(), $timeout=30){  
  9.     $ch = curl_init();  
  10.     curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // 跳过证书检查  
  11.     curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, true);  // 从证书中检查SSL加密算法是否存在  
  12.     curl_setopt($ch, CURLOPT_URL, $url);  
  13.     curl_setopt($ch, CURLOPT_HTTPHEADER, $header);  
  14.     curl_setopt($ch, CURLOPT_POST, true);  
  15.     curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));  
  16.     curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);   
  17.     curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);  
  18.  
  19.     $response = curl_exec($ch);  
  20.  
  21.     if($error=curl_error($ch)){  
  22.         die($error);  
  23.     }  
  24.  
  25.     curl_close($ch);  
  26.  
  27.     return $response;  
  28.  
  29. }  
  30.  
  31. // 调用  
  32. $url = 'https://www.example.com/api/message.php';  
  33. $data = array('name'=>'fdipzone');  
  34. $header = array();  
  35.  
  36. $response = curl_https($url$data$header, 5);  
  37.  
  38. echo $response;  
  39. ?>

Tags: curl获取https

分享到: