(PHP 4 >= 4.3.0, PHP 5)
apache_response_headers — Obtêm todos os cabeçalhos da resposta HTTP
Obtém todos os cabeçalhos de resposta.
Um array de todos os cabeçalhos de resposta do Apache em sucesso, ou FALSE
em falha.
Exemplo #1 apache_response_headers() example
<?php
print_r(apache_response_headers());
?>
O exemplo acima irá imprimir algo similar à:
Array ( [Accept-Ranges] => bytes [X-Powered-By] => PHP/4.3.8 )
As of PHP 4.3.3 you can use this function with the NSAPI server module in Netscape/iPlanet/SunONE webservers, too.