UNPKG
manual-php
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
PHP 手册
github.com/kuriv/manual-php
kuriv/manual-php
manual-php
/
docs
/
语言参考
/
预定义变量
/
$http_response_header.md
13 lines
(7 loc)
•
265 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
# $http_response_header
当使用 HTTP 包装器时, `
$http_response_header
` 将会被 HTTP 响应头信息填充。与使用 `
get_headers
()` 函数类似。 ```php
<?php
$data
=
file_get_contents
(
'https://github.com/'
);
var_dump
(
$http_response_header
); ```