headers_list
(PHP 5, PHP 7, PHP 8)
headers_list — 返回已發送的 HTTP 響應頭(或準備發送的)
參數
此函式沒有參數。
返回值
返回數字索引的頭陣列。
範例
示例 #1 使用 headers_list() 的例子
<?php
/* setcookie() 會自己新增一個響應頭 */
setcookie('foo', 'bar');
/* 新增自定義的響應頭
大多數客戶端會主動忽略 */
header("Example-Test: foo");
/* 響應中指定內容為明文 text */
header('Content-Type: text/plain; charset=UTF-8');
/* 所以會發送什麼頭呢? */
var_dump(headers_list());
?>
以上例程的輸出類似於:
array(3) { [0]=> string(19) "Set-Cookie: foo=bar" [1]=> string(17) "Example-Test: foo" [2]=> string(39) "Content-Type: text/plain; charset=UTF-8" }
註釋
注意:
數據頭只會在SAPI支援時得到處理和輸出。
參見
- headers_sent() - 檢測 HTTP 頭是否已經發送
- header() - 發送原生 HTTP 頭
- setcookie() - 發送 Cookie
- apache_response_headers() - 獲得全部 HTTP 響應頭資訊
- http_response_code() - 獲取/設定響應的 HTTP 狀態碼