首页 >函数列表 >header_register_callback

header_register_callback

header_register_callback

(No version information available, might only be in SVN)

header_register_callbackCall a header function

说明

bool header_register_callback ( callback $callback )

Registers a function that will be called when PHP starts sending output.

The callback is executed just after PHP prepares all headers to be sent, and before any other output is sent, creating a window to manipulate the outgoing headers before being sent.

参数

callback

Function called just before the headers are sent. It gets no parameters and the return value is ignored.

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE.

范例

Example #1 header_register_callback() example

<?php

header
('Content-Type: text/plain');
header('X-Test: foo');

function 
foo() {
 foreach (
headers_list() as $header) {
   if (
strpos($header'X-Powered-By:') !== false) {
     
header_remove('X-Powered-By');
   }
   
header_remove('X-Test');
 }
}

$result header_register_callback('foo');
echo 
"a";
?>

以上例程的输出类似于:

Content-Type: text/plain

a

注释

header_register_callback() is executed just as the headers are about to be sent out, so any output from this function can break output.

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 交通频道