<อ้างอิง 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 สมบูรณ์