Los últimos tutoriales de desarrollo web
 

PHP headers_list() Function


<Referencia completa de PHP HTTP

Definición y Uso

El headers_list() función devuelve una lista de cabeceras de respuesta enviados (or ready to send) a un cliente.

Esta función devuelve una serie de cabeceras.

Sintaxis

headers_list()

Notas y sugerencias

Tip: Para determinar si o no los han enviado cabeceras, sin embargo, utilizar el headers_sent() función.


Ejemplo 1

<?php
setcookie("TestCookie","SomeValue");
header("X-Sample-Test: foo");
header("Content-type: text/plain");
?>

<html>
<body>

<?php
// What headers are to be sent?
var_dump(headers_list());
?>

</body>
</html>

La salida del código anterior será:

array(4)
{
[0]=> string(23) "X-Powered-By: PHP/5.1.1"
[1]=> string(19) "Set-Cookie: TestCookie=SomeValue"
[2]=> string(18) "X-Sample-Test: foo"
[3]=> string(24) "Content-type: text/plain"
}

<Referencia completa de PHP HTTP