<完全な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リファレンス