get_headers 取得服务器响应一个 HTTP 请求所发送的所有标头
发表日期:2021-07-01 08:56:31 | 来源: | | 浏览(503) 分类:URL 函数
get_headers
(PHP 5, PHP 7, PHP 8)
get_headers — 取得服务器响应一个 HTTP 请求所发送的所有标头
说明
get_headers(string
$url
, int $format
= 0): arrayget_headers() 返回一个数组,包含有服务器响应一个 HTTP 请求所发送的标头。
参数
-
url
-
目标 URL。
-
format
-
如果将可选的
format
参数设为 1,则 get_headers() 会解析相应的信息并设定数组的键名。
返回值
返回包含有服务器响应一个
HTTP 请求所发送标头的索引或关联数组,如果失败则返回 false
。
范例
示例 #1 get_headers() 例子
<?php $url = 'http://www.example.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 )
示例 #2 get_headers() using HEAD example
<?php // By default get_headers uses a GET request to fetch the headers. If you// want to send a HEAD request instead, you can do so using a stream context:stream_context_set_default( array( 'http' => array( 'method' => 'HEAD' ) )); $headers = get_headers('http://example.com'); ?>
- PHP(0)
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- base64_decode 对使用 MIME base64 编码的数据进行解码(0)
- base64_encode 使用 MIME base64 对数据进行编码(0)
- get_headers 取得服务器响应一个 HTTP 请求所发送的所有标头(0)
- get_meta_tags 从一个文件中提取所有的 meta 标签 content 属性,返回一个数组(0)
- http_build_query 生成 URL-encode 之后的请求字符串(0)
- parse_url 解析 URL,返回其组成部分(0)
- rawurldecode 对已编码的 URL 字符串进行解码(0)
- rawurlencode 按照 RFC 3986 对 URL 进行编码(0)
- urldecode 解码已编码的 URL 字符串(0)
- urlencode 编码 URL 字符串(0)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)