PHP headers_list() 函數
PHP headers_list() 函數

定義和用法
headers_list() 函數返回已發送的(或待發送的)響應頭部的一個列表。
該函數返回包含報頭的數組。
語法
headers_list()
提示和注釋
提示:如需確定是否已發送報頭,請使用 headers_sent() 函數。
實例 1
<?php
setcookie("TestCookie","SomeValue"');
header("X-Sample-Test: foo");
header('Content-type: text/plain');
?>
<html>
<body>
<?php
// What headers are to be sent?
var_dump(headers_list());
?>
</body>
</html>
setcookie("TestCookie","SomeValue"');
header("X-Sample-Test: foo");
header('Content-type: text/plain');
?>
<html>
<body>
<?php
// What headers are to be sent?
var_dump(headers_list());
?>
</body>
</html>
上面的代碼將輸出:
array(4)
{
[0]=> string(23) "X-Powered-By: PHP/5.1.1"
[1]=> string(19) "Set-Cookie: TestCookie=SomeValue"
[2]=> string(18) "X-Sample-Test: foo"
[3]=> string(24) "Content-type: text/plain"
}
{
[0]=> string(23) "X-Powered-By: PHP/5.1.1"
[1]=> string(19) "Set-Cookie: TestCookie=SomeValue"
[2]=> string(18) "X-Sample-Test: foo"
[3]=> string(24) "Content-type: text/plain"
}

相關文章
- PHP Session
- PHP array_udiff() 函數
- PHP curl_share_init函數
- PHP date_parse() 函數
- PHP date_sub() 函數
- PHP date_timezone_set() 函數
- PHP getdate() 函數
- PHP gmdate() 函數
- PHP gmmktime() 函數
- PHP error_log() 函數
- PHP fpassthru() 函數
- PHP FILTER_SANITIZE_EMAIL 過濾器
- PHP FILTER_VALIDATE_EMAIL 過濾器
- PHP mt_rand() 函數
- PHP mysqli_connect_errno() 函數
- PHP crc32() 函數
- PHP htmlentities() 函數
- PHP strtoupper() 函數
- PHP xml_set_character_data_handler() 函數
- PHP imagecolorallocate – 為一幅圖像分配顏色