<전체 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 참조