headers_list() 函數傳回已傳送的(或待傳送的)回應頭部的一個清單。
此函數傳回包含報頭的陣列。
headers_list()
提示:如需確定是否已傳送報頭,請使用headers_sent() 函數。
<?phpsetcookie("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"}