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 = 'http://www.phpfensi.com';
  3. print_r(get_headers($url));
  4. print_r(get_headers($url, 1));
  5. ?>
  6. 返回值
  7. Array
  8. (
  9. [0] => HTTP/1.1 200 OK
  10. [1] => Date: Sat, 29 May 2004 12:28:13 GMT
  11. [2] => Server: Apache/1.3.27 (Unix) (Red-Hat/Linux)
  12. [3] => Last-Modified: Wed, 08 Jan 2003 23:11:55 GMT
  13. [4] => ETag: "3f80f-1b6-3e1cb03b"
  14. [5] => Accept-Ranges: bytes
  15. [6] => Content-Length: 438
  16. [7] => Connection: close
  17. [8] => Content-Type: text/html
  18. )
  19. Array
  20. (
  21. [0] => HTTP/1.1 200 OK
  22. [Date] => Sat, 29 May 2004 12:28:14 GMT
  23. [Server] => Apache/1.3.27 (Unix) (Red-Hat/Linux)
  24. [Last-Modified] => Wed, 08 Jan 2003 23:11:55 GMT
  25. [ETag] => "3f80f-1b6-3e1cb03b"
  26. [Accept-Ranges] => bytes
  27. [Content-Length] => 438
  28. [Connection] => close
  29. [Content-Type] => text/html
  30. )

例,代码如下:

  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;
  12. }

例2,排除重定向的例子,代码如下:

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