PHP 日本大会 2024

http_get_last_response_headers

(PHP 8 >= 8.4.0)

http_get_last_response_headers检索最后一次 HTTP 响应头

描述

http_get_last_response_headers(): ?array

返回一个包含通过 HTTP 包装器 接收到的最后一个 HTTP 响应头的 array。如果没有,则返回 null

参数

此函数没有参数。

返回值

返回一个使用 HTTP 包装器 期间接收到的 HTTP 头的索引 array。如果没有,则返回 null

示例

示例 #1 http_get_last_response_headers() 示例

描述。

<?php
file_get_contents
("http://example.com");
var_dump(http_get_last_response_headers());
?>

以上示例将输出类似于以下内容

array(14) {
  [0]=>
  string(15) "HTTP/1.1 200 OK"
  [1]=>
  string(20) "Accept-Ranges: bytes"
  [2]=>
  string(11) "Age: 326940"
  [3]=>
  string(29) "Cache-Control: max-age=604800"
  [4]=>
  string(38) "Content-Type: text/html; charset=UTF-8"
  [5]=>
  string(35) "Date: Mon, 11 Nov 2024 13:34:09 GMT"
  [6]=>
  string(23) "Etag: "3147526947+gzip""
  [7]=>
  string(38) "Expires: Mon, 18 Nov 2024 13:34:09 GMT"
  [8]=>
  string(44) "Last-Modified: Thu, 17 Oct 2019 07:18:26 GMT"
  [9]=>
  string(24) "Server: ECAcc (nyd/D16C)"
  [10]=>
  string(21) "Vary: Accept-Encoding"
  [11]=>
  string(12) "X-Cache: HIT"
  [12]=>
  string(20) "Content-Length: 1256"
  [13]=>
  string(17) "Connection: close"
}

参见

添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top