MISC平台返回的数据包含在头文件当中吧,
用这函数试试,它只支持(PHP 5)
1:
headers_list
(PHP 5)
headers_list -- 返回已发送(或准备发送)的响应标头的列表
说明
array headers_list ( void )
headers_list() 将返回一个数字索引的数组,包含有向浏览器/客户端发送的标头。要判断标头是否已被发送,使用 headers_sent()。或者用这个(你的服务器得是Apache)getallheaders
(PHP 3, PHP 4, PHP 5)getallheaders -- Fetch all HTTP request headers
说明
array getallheaders ( void )
Fetches all HTTP requests from the current request. This function is an alias for apache_request_headers(). Please read the apache_request_headers() documentation for more information on how this function works. 此函数仅在 PHP 作为 Apache 模块安装时才可使用。