if you want to remove header information about php version (x-powered-by), you can use:
header_remove('x-powered-by');
alternatively, if you don't have php 5.3 installed, you can do the same thing using "header" command:
header('x-powered-by:');
don't forget the ':' character at the end of the string!
header_remove
(PHP 5 >= 5.3.0)
header_remove — Remove previously set headers
Descripción
void header_remove
([ string $name
] )
Removes an HTTP header previously set using header().
Parámetros
- name
-
The header name to be removed.
Note: This parameter is case-insensitive.
Valores devueltos
No devuelve ningún valor.
Ejemplos
Example #1 Unsetting specific header.
<?php
header("X-Foo: Bar");
header("X-Bar: Baz");
header_remove("X-Foo");
?>
El resultado del ejemplo sería algo similar a:
X-Bar: Baz
Example #2 Unsetting all previously set headers.
<?php
header("X-Foo: Bar");
header("X-Bar: Baz");
header_remove();
?>
El resultado del ejemplo sería algo similar a:
Notas
Caution
This function will remove all headers set by PHP, including cookies, session and the X-Powered-By headers.
Ver también
- header() - Enviar encabezado sin formato HTTP
- headers_sent() - Checks if or where headers have been sent
Saeed Khamseh
24-Feb-2011 07:53
rob at tdd dot org dot uk
11-Dec-2010 01:27
This function will remove the first header entry, in the case of multiple headers of the same type have been set.
<?php
header('X-Foo: value1', false);
header('X-Foo: value2', false);
header_remove('X-Foo');
print_r(headers_list());
?>
Gives the response:
Array
(
[0] => X-Foo: value2
)
rwagener11 at gmail dot com
07-Jul-2010 10:16
FYI: This function does not support an array or multiple entries
header_remove(array("X-Powered-By","Expires")); // doesn't work
header_remove("X-Powered-By","Expires"); // doesn't work
Spent the time verifying if it was similar to the unset() command which allows.
unset($a,$b);
