tutoriais mais recente desenvolvimento web
 

PHP headers_list() Function


<Referência Completa HTTP PHP

Definição e Uso

O headers_list() função retorna uma lista de cabeçalhos de resposta enviados (or ready to send) para um cliente.

Esta função devolve uma matriz de cabeçalhos.

Sintaxe

headers_list()

Dicas e Notas

Tip: Para determinar se ou não os cabeçalhos foram enviados ainda, usar o headers_sent() função.


Exemplo 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>

A saída do código acima 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"
}

<Referência Completa HTTP PHP