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

PHP使用get_headers函数判断远程文件是否存在的方法

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

这篇文章主要介绍了PHP使用get_headers函数判断远程文件是否存在的方法,以实例形式分析了使用get_headers函数对远程文件是否存在进行判断的方法,以及针对重定向的排除方法,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了PHP使用get_headers函数判断远程文件是否存在的方法。分享给大家供大家参考。具体实现方法如下:

以前讲过程关于php判断远程文件是否存在的文章都是利用fopen,sockt,curl函数来实现检查远程文件是否存在,下面我再介绍利用 get_headers来检查远程文件是否存在,感兴趣的朋友可以参考一下。

先来简单了解get_headers()函数

get_headers() 返回一个数组m包含有服务器响应一个 HTTP 请求所发送的标头。

get_headers:发送服务器响应HTTP请求

get_headers(字符串url[链接格式])

get_headers()以数组的形式返回服务器HTTP请求m如果执行失败,将返回FALSE和一个错误的水平E_WARNING,可选参数设置为1,get_headers()能分析系统的响应速度和集数组中的键,注意:使用该函数需要把 php.ini里面的allow_url_fopen = On,才能使用

实例代码如下:

  1. <?php 
  2. $url = 'https://www.phpfensi.com'
  3. print_r(get_headers($url)); 
  4. print_r(get_headers($url, 1)); 
  5. ?> 

运行结果如下:

  1. Array 
  2.     [0] => HTTP/1.1 200 OK 
  3.     [1] => Cache-Control: max-age=1800 
  4.     [2] => Content-Length: 54874 
  5.     [3] => Content-Type: text/html 
  6.     [4] => Content-Location: https://www.phpfensi.com/index.htm 
  7.     [5] => Last-Modified: Fri, 28 Nov 2014 03:34:56 GMT 
  8.     [6] => Accept-Ranges: bytes 
  9.     [7] => ETag: "b66ba847bcad01:bc5" 
  10.     [8] => Server: Microsoft-IIS/6.0 
  11.     [9] => Date: Fri, 28 Nov 2014 03:37:34 GMT 
  12.     [10] => Connection: close 
  13. Array 
  14.     [0] => HTTP/1.1 200 OK 
  15.     [Cache-Control] => max-age=1800 
  16.     [Content-Length] => 54874 
  17.     [Content-Type] => text/html 
  18.     [Content-Location] => https://www.phpfensi.com/index.htm 
  19.     [Last-Modified] => Fri, 28 Nov 2014 03:34:56 GMT 
  20.     [Accept-Ranges] => bytes 
  21.     [ETag] => "b66ba847bcad01:bc5" 
  22.     [Server] => Microsoft-IIS/6.0 
  23.     [Date] => Fri, 28 Nov 2014 03:37:35 GMT 
  24.     [Connection] => close 

判断远程文件是否存在代码如下:

  1. //判断远程文件是否存在   
  2. function remote_file_exists($url) {   
  3.         $executeTime = ini_get('max_execution_time');   
  4.         ini_set('max_execution_time', 0);   
  5.         $headers = @get_headers($url);   
  6.         ini_set('max_execution_time'$executeTime);   
  7.         if ($headers) {   
  8.             $head = explode(' '$headers[0]);   
  9.             if ( !emptyempty($head[1]) && intval($head[1]) < 400) return true;   
  10.         }   
  11.         return false;   

排除重定向的实例代码如下:

  1. <?php  
  2. /** 
  3.  * Fetches all the real headers sent by the server in response to a HTTP request without redirects 
  4.  * 获取不包含重定向的报头 
  5.  */  
  6.      
  7. function get_real_headers($url,$format=0,$follow_redirect=0) {  
  8.   if (!$follow_redirect) {  
  9.     //set new default options  
  10.     $opts = array('http' =>  
  11.         array('max_redirects'=>1,'ignore_errors'=>1)  
  12.     );  
  13.     stream_context_get_default($opts);  
  14.   }  
  15.   //get headers  
  16.     $headers=get_headers($url,$format);  
  17.     //restore default options  
  18.   if (isset($opts)) {  
  19.     $opts = array('http' =>  
  20.         array('max_redirects'=>20,'ignore_errors'=>0)  
  21.     ); 
  22.     stream_context_get_default($opts);  
  23.   }  
  24.   //return  
  25.     return $headers;  
  26. }  
  27. ?> 

希望本文所述对大家的PHP程序设计有所帮助。

Tags: get_headers PHP远程文件是否存在

分享到: