-
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,才能使用
例,代码如下:
- <?php
- $url = 'http://www.phpfensi.com';
- print_r(get_headers($url));
- print_r(get_headers($url, 1));
- ?>
- 返回值
- Array
- (
- [0] => HTTP/1.1 200 OK
- [1] => Date: Sat, 29 May 2004 12:28:13 GMT
- [2] => Server: Apache/1.3.27 (Unix) (Red-Hat/Linux)
- [3] => Last-Modified: Wed, 08 Jan 2003 23:11:55 GMT
- [4] => ETag: "3f80f-1b6-3e1cb03b"
- [5] => Accept-Ranges: bytes
- [6] => Content-Length: 438
- [7] => Connection: close
- [8] => Content-Type: text/html
- )
- Array
- (
- [0] => HTTP/1.1 200 OK
- [Date] => Sat, 29 May 2004 12:28:14 GMT
- [Server] => Apache/1.3.27 (Unix) (Red-Hat/Linux)
- [Last-Modified] => Wed, 08 Jan 2003 23:11:55 GMT
- [ETag] => "3f80f-1b6-3e1cb03b"
- [Accept-Ranges] => bytes
- [Content-Length] => 438
- [Connection] => close
- [Content-Type] => text/html
- )
例,代码如下:
- //判断远程文件是否存在
- function remote_file_exists($url) {
- $executeTime = ini_get('max_execution_time');
- ini_set('max_execution_time', 0);
- $headers = @get_headers($url);
- ini_set('max_execution_time', $executeTime);
- if ($headers) {
- $head = explode(' ', $headers[0]);
- if ( !emptyempty($head[1]) && intval($head[1]) < 400) return true;
- }
- return false;
- }
例2,排除重定向的例子,代码如下:
- <?php
- /**
- * Fetches all the real headers sent by the server in response to a HTTP request without redirects
- * 获取不包含重定向的报头
- */
- function get_real_headers($url,$format=0,$follow_redirect=0) {
- if (!$follow_redirect) {
- //set new default options
- $opts = array('http' =>
- array('max_redirects'=>1,'ignore_errors'=>1)
- );
- stream_context_get_default($opts);
- }
- //get headers
- $headers=get_headers($url,$format);
- //restore default options
- if (isset($opts)) {
- $opts = array('http' =>
- array('max_redirects'=>20,'ignore_errors'=>0)
- ); //开源软件:phpfensi.com
- stream_context_get_default($opts);
- }
- //return
- return $headers;
- }
- ?>
出处:http://www.phpfensi.com/php/20140914/5564.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式