headers_list() 함수는 전송된(또는 보류 중인) 응답 헤더 목록을 반환합니다.
이 함수는 헤더가 포함된 배열을 반환합니다.
헤더_목록()
팁: 헤더가 전송되었는지 확인하려면 headers_sent() 함수를 사용하세요.
<?phpsetcookie("TestCookie","SomeValue"');header("X-Sample-Test: foo");header('Content-type: text/plain');?><html><body><? php// 어떤 헤더를 보낼까요?var_dump(headers_list());?></body></html>
위 코드는 다음을 출력합니다:
array(4){[0]=> string(23) "X-Powered-By: PHP/5.1.1"[1]=> string(19) "쿠키 설정: TestCookie=SomeValue"[2]=> string(18) "X-샘플 테스트: foo"[3]=> string(24) "콘텐츠 유형: 텍스트/일반"}