当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP headers_list()用法及代码示例


header_list()函数是PHP中的一个内置函数,它以数组的形式返回已发送或准备发送给客户端或浏览器的响应头的列表。

用法:

array headers_list( void )

参数:该函数不接受任何参数。
返回值:它返回要发送到浏览器或客户端的列表或标头数组。


注意:它不同于headers_sent()函数,后者适合检查是否发送了标头,但headers_list()在这种情况下并不适合,因为它同时列出了标头的已发送状态和准备发送状态。

示例1:

<?php 
  
// Use setcookie() function to add 
// response header 
setcookie("cookie1", "value_of_cookie1"); 
  
// Define the header  
header("test: geeksforgeeks"); 
  
header("Content-type: text/plain"); 
  
// Display the array returned by the 
// headers_list() function 
print_r(headers_list()); 
  
?>

输出:

Array
(   
    [0] => Set-Cookie: cookie1=value_of_cookie1
    [1] => test: geeksforgeeks
    [2] => Content-type: text/plain;charset=UTF-8
)

示例2:

<?php 
  
// Use setcookie() function to add  
// header automatically 
setcookie('uid', 'user4059'); 
  
// Defining a custom response header 
header("custom-res-header: cstm"); 
  
// Specifying plain text content in 
// response 
header('Content-type: text/plain'); 
  
// Display all sent headers 
var_dump(headers_list()); 
  
?>

输出:

array(3) {
  [0]=>string(24) "Set-Cookie: uid=user4059"
  [1]=>string(23) "custom-res-header: cstm"
  [2]=>string(38) "Content-type: text/plain;charset=UTF-8"
}

参考: http://php.net/manual/en/function.headers-list.php



相关用法


注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 PHP | headers_list() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。