PHP Conference Japan 2024

$http_response_header

(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)

$http_response_headerHTTP 响应头

描述

The $http_response_header 数组 类似于 get_headers() 函数。当使用 HTTP 封装器 时,$http_response_header 将填充 HTTP 响应头。 $http_response_header 将在 局部作用域 中创建。

示例

示例 #1 $http_response_header 示例

<?php
function get_contents() {
file_get_contents("http://example.com");
var_dump($http_response_header); // 变量在局部作用域中填充
}
get_contents();
var_dump($http_response_header); // 调用 get_contents() 不会在函数作用域之外填充变量
?>

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

array(9) {
  [0]=>
  string(15) "HTTP/1.1 200 OK"
  [1]=>
  string(35) "Date: Sat, 12 Apr 2008 17:30:38 GMT"
  [2]=>
  string(29) "Server: Apache/2.2.3 (CentOS)"
  [3]=>
  string(44) "Last-Modified: Tue, 15 Nov 2005 13:24:10 GMT"
  [4]=>
  string(27) "ETag: "280100-1b6-80bfd280""
  [5]=>
  string(20) "Accept-Ranges: bytes"
  [6]=>
  string(19) "Content-Length: 438"
  [7]=>
  string(17) "Connection: close"
  [8]=>
  string(38) "Content-Type: text/html; charset=UTF-8"
}

Warning: Undefined variable $http_response_header
NULL

参见

添加注释

用户贡献的笔记 2 条笔记

nicolas at toniazzi dot net
11 年前
请注意,HTTP 封装器对报头行有 1024 个字符的硬性限制。
任何接收到的长度超过此限制的 HTTP 报头都将被忽略,并且不会出现在 $http_response_header 中。

cURL 扩展没有此限制。

http_fopen_wrapper.c: #define HTTP_HEADER_BLOCK_SIZE 1024
MangaII
9 年前
解析函数以获取格式化的标头(带响应代码)

<?php

function parseHeaders( $headers )
{
$head = array();
foreach(
$headers as $k=>$v )
{
$t = explode( ':', $v, 2 );
if( isset(
$t[1] ) )
$head[ trim($t[0]) ] = trim( $t[1] );
else
{
$head[] = $v;
if(
preg_match( "#HTTP/[0-9\.]+\s+([0-9]+)#",$v, $out ) )
$head['reponse_code'] = intval($out[1]);
}
}
return
$head;
}

print_r(parseHeaders($http_response_header));

/*
Array
(
[0] => HTTP/1.1 200 OK
[reponse_code] => 200
[Date] => Fri, 01 May 2015 12:56:09 GMT
[Server] => Apache
[X-Powered-By] => PHP/5.3.3-7+squeeze18
[Set-Cookie] => PHPSESSID=ng25jekmlipl1smfscq7copdl3; path=/
[Expires] => Thu, 19 Nov 1981 08:52:00 GMT
[Cache-Control] => no-store, no-cache, must-revalidate, post-check=0, pre-check=0
[Pragma] => no-cache
[Vary] => Accept-Encoding
[Content-Length] => 872
[Connection] => close
[Content-Type] => text/html
)
*/

?>
To Top