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

php采用curl访问域名返回405 method not allowed提示的解决方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-03-03 11:45:48 浏览: 评论:0 

这篇文章主要介绍了php采用curl访问域名返回405 method not allowed提示的解决方法,需要的朋友可以参考下

  1. /** 
  2.  * http测试 
  3.  * 注:PHP版本5.2以上才支持CURL_IPRESOLVE_V4 
  4.  * @param $url 网站域名 
  5.  * @param $type 网站访问协议 
  6.  * @param $ipresolve 解析方式 
  7.  */ 
  8. public function web_http($url,$type,$ipresolve) { 
  9.     //设置Header头 
  10.     $header[] = "Accept: application/json"
  11.      $header[] = "Accept-Encoding: gzip"
  12.     $httptype = function_exists('curl_init'); 
  13.     if (!$httptype) { 
  14.       $html = file_get_contents($url); 
  15.     } else { 
  16.       $ch = curl_init(); 
  17.       curl_setopt($ch, CURLOPT_URL, $url); 
  18.       //输出头信息 
  19.       curl_setopt($ch, CURLOPT_HEADER, 1); 
  20.       //递归访问location跳转的链接,直到返回200OK 
  21.       curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); 
  22.       //不对HTML中的BODY部分进行输出 
  23.       curl_setopt($ch, CURLOPT_NOBODY, 1); 
  24.       //将结果以文件流的方式返回,不是直接输出 
  25.       curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
  26.       //以IPv4/IPv6的方式访问 
  27.       if($ipresolve=='ipv6') { 
  28.         curl_setopt($ch,CURLOPT_IPRESOLVE,CURL_IPRESOLVE_V6); 
  29.       }else
  30.         curl_setopt($ch,CURLOPT_IPRESOLVE,CURL_IPRESOLVE_V4); 
  31.       } 
  32.       //添加HTTP header头采用压缩和GET方式请求 
  33.       curl_setopt( $ch, CURLOPT_HTTPHEADER, $header ); 
  34.       curl_setopt($ch,CURLOPT_ENCODING , "gzip"); 
  35.       curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET'); 
  36.       //清除DNS缓存 
  37.       curl_setopt($ch,CURLOPT_DNS_CACHE_TIMEOUT,0); 
  38.       //设置连接超时时间 
  39.       curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,15); 
  40.       //设置访问超时 
  41.       curl_setopt($ch,CURLOPT_TIMEOUT,50); 
  42.       //设置User-agent 
  43.       curl_setopt($ch,CURLOPT_USERAGENT,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.47 Safari/536.11'); 
  44.       if($type=="https") { 
  45.           //不对认证证书来源的检查 
  46.           curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); 
  47.           //从证书中检查SSL加密算法是否存在  
  48.           curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, true); 
  49.       } 
  50.       //执行Curl操作 
  51.       $html = curl_exec($ch); 
  52.       //获取一个cURL连接资源句柄的信息(获取最后一次传输的相关信息) 
  53.       $info = curl_getinfo($ch); 
  54.       curl_close($ch); 
  55.     } 
  56.     return $info
  57.   } 

以上为一个基本curl访问的方法,由于这里需要通过使用IPv6的方式,所以加了相应的选项,相信大家能看的明白,平时经常用到的选项上面都有出现,大家根据需要取舍。

状态码提示405/Method Not Allowed表示不支持请求的方法,这个错误并不常见。

导致这个错误是要是由于curl默认是采用post方式进行提交访问的,post方式在此类域名下是没有权限的,比如在测试www.amazon.cn的时候就出现了这类问题,而修改为get的方式,并且增加了header头后,即可正常访问,个人推测,或许是亚马逊那边基本上都是采用get的方式,才会被认为是人为的点击,对post做了相应屏蔽。

对此增加了如下代码:

  1. //设置Header头 
  2. $header[] = "Accept: application/json"
  3. $header[] = "Accept-Encoding: gzip"
  4. //添加HTTP header头采用压缩和GET方式请求 
  5. curl_setopt( $ch, CURLOPT_HTTPHEADER, $header ); 
  6. curl_setopt($ch,CURLOPT_ENCODING , "gzip"); 
  7. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET'); 

命令行的形式为:

curl -v www.phpfensi.com

Tags: curl访问域名 method allowed

分享到: