Php/docs/function.header-register-callback

来自菜鸟教程
跳转至:导航、​搜索

header_register_callback

(PHP 5 >= 5.4.0, PHP 7)

header_register_callback调用一个 header 函数


说明

header_register_callback ( callable $callback ) : bool

注册一个函数,在 PHP 开始发送输出时调用。

PHP 准备好所有响应头,在发送内容之前执行 callback,创建了一个发送响应头的操作窗口。


参数

callback
在头发送前调用函数。 它没有参数,返回的值也会被忽略。


返回值

成功时返回 true, 或者在失败时返回 false


范例

Example #1 header_register_callback() 例子

<?phpheader('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() 是在头即将发送前执行的, 所以本函数的任意内容输出都会打断输出过程。

Note:

数据头只会在SAPI支持时得到处理和输出。

参见