ฟังก์ชัน headers_list() ส่งคืนรายการส่วนหัวการตอบกลับที่ส่ง (หรือรอดำเนินการ)
ฟังก์ชันนี้ส่งคืนอาร์เรย์ที่มีส่วนหัว
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) "Set-Cookie: TestCookie=SomeValue"[2]=> string(18) "X-Sample-Test: foo"[3]=> string(24) "ประเภทเนื้อหา: ข้อความ/ธรรมดา"}