PHP headers_list() 函數(shù)
PHP headers_list() 函數(shù)

定義和用法
headers_list() 函數(shù)返回已發(fā)送的(或待發(fā)送的)響應(yīng)頭部的一個(gè)列表。
該函數(shù)返回包含報(bào)頭的數(shù)組。
語法
headers_list()
提示和注釋
提示:如需確定是否已發(fā)送報(bào)頭,請(qǐng)使用 headers_sent() 函數(shù)。
實(shí)例 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"
}

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