|
header_removeRemove previously set headers Description
void header_remove
([ string
$name
] )Removes an HTTP header previously set using header. Parameters
Return ValuesNo value is returned. Examples
Example #1 Unsetting specific header.
<?php The above example will output something similar to: X-Bar: Baz Example #2 Unsetting all previously set headers.
<?php The above example will output something similar to: NotesCaution
This function will remove all headers set by PHP, including cookies, session and the X-Powered-By headers.
See Also
|