最新的Web開發教程
 

PHP headers_list() Function


<完整PHP HTTP參考

定義和用法

headers_list()函數返回發送的響應頭的列表(or ready to send)到客戶端。

該函數返回標頭的陣列。

句法

headers_list()

提示和注意

Tip:要確定是否沒有頭已經尚未發送,使用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>

代碼的輸出將是:

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"
}

<完整PHP HTTP參考