标签:
CI中获取HTTP头信息的方法:
在不支持apache_request_headers()的非Apache环境非常有用。返回请求头(header)数组。
$headers = $this->input->request_headers();
----------------------------------------------------------------------------------------------
获取http请求的头信息。
PHP手册提供了现成的函数:
(PHP 4, PHP 5)
getallheaders — Fetch all HTTP request headers
Fetches all HTTP headers from the current request.
This function is an alias for apache_request_headers(). Please read theapache_request_headers() documentation for more information on how this function works.
Example #1 getallheaders() example
不过这个函数只能在apache环境下使用,iis或者nginx并不支持,可以通过自定义函数实现
好了,看看都打印出了啥吧
获得结果:
标签:
原文地址:http://www.cnblogs.com/kenshinobiy/p/4462533.html