首页 >函数列表 >headers_list

headers_list

headers_list

(PHP 5)

headers_listReturns a list of response headers sent (or ready to send)

说明

array headers_list ( void )

headers_list() will return a list of headers to be sent to the browser / client. To determine whether or not these headers have been sent yet, use headers_sent().

返回值

Returns a numerically indexed array of headers.

范例

Example #1 Examples using headers_list()

<?php


setcookie('foo''bar');


header("X-Sample-Test: foo");


header('Content-type: text/plain');


var_dump(headers_list());

?>

以上例程会输出:

array(4) {
  [0]=>
  string(23) "X-Powered-By: PHP/5.1.3"
  [1]=>
  string(19) "Set-Cookie: foo=bar"
  [2]=>
  string(18) "X-Sample-Test: foo"
  [3]=>
  string(24) "Content-type: text/plain"
}

注释

Note:

Headers will only be accessible and output when a SAPI that supports them is in use.

参见


  • checkdnsrr
  • closelog
  • define_syslog_variables
  • dns_check_record
  • dns_get_mx
  • dns_get_record
  • fsockopen
  • gethostbyaddr
  • gethostbyname
  • gethostbynamel
  • gethostname
  • getmxrr
  • getprotobyname
  • getprotobynumber
  • getservbyname
  • getservbyport
  • header
  • headers_list
  • headers_sent
  • header_register_callback
  • header_remove
  • http_response_code
  • inet_ntop
  • inet_pton
  • ip2long
  • long2ip
  • openlog
  • pfsockopen
  • setcookie
  • setrawcookie
  • socket_get_status
  • socket_set_blocking
  • socket_set_timeout
  • syslog
  • PHP MySQL HTML CSS JavaScript MSSQL AJAX .NET JSP Linux Mac ASP 服务器 SQL jQuery C# C++ java Android IOS oracle MongoDB SQLite wamp 交通频道