PHP获取http头信息

网友投稿 262 2022-09-16

PHP获取http头信息

获取4, PHP 5)

getallheaders — Fetch all HTTP request headers

说明

array  getallheaders (  void

Fetches all HTTP headers from the current request.

This function is an alias for ​​apache_request_headers()​​​. Please read the​​apache_request_headers()​​

返回值

An associative array of all the HTTP headers in the current request, orFALSE on failure.

Example #1 getallheaders()

$value) { echo "$name: $value\n"; } ?>

不过这个函数只能在apache环境下使用,iis或者nginx并不支持,可以通过自定义函数实现

if (!function_exists('getallheaders')) { function getallheaders() { foreach ($_SERVER as $name => $value) { if (substr($name, 0, 5) == 'HTTP_') { $headers[str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))))] = $value; } } return $headers; } } ?>

好了,看看都打印出了啥吧

获得结果

Array ( [Accept] => */* [Accept-Language] => zh-cn [Accept-Encoding] => gzip, deflate [User-Agent] => Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727) [Host] => localhost [Connection] => Keep-Alive )

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:国家卫健委:19日新增确诊病例8例,均为境外输入病例!
下一篇:PHP中使用XML-RPC构造Web Service简单入门
相关文章

 发表评论

暂时没有评论,来抢沙发吧~