downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

header_remove> <getservbyport
[edit] Last updated: Fri, 25 May 2012

view this page in

header_register_callback

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

header_register_callbackCall a header function

Descrierea

bool header_register_callback ( callable $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.

Parametri

callback

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

Valorile întoarse

Întoarce valoarea TRUE în cazul succesului sau FALSE în cazul eșecului.

Exemple

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";
?>

Exemplul de mai sus va afișa ceva similar cu:

Content-Type: text/plain

a

Note

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

Notă:

Antetele vor fi accesibile și afișate doar atunci când este utilizat un SAPI care le susține.

Vedeți de asemenea



add a note add a note User Contributed Notes header_register_callback
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites