获取请求头信息

/**
* 获取请求头信息
* @return string
*/
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;
   }
}


Jsky博客
请先登录后发表评论
  • 最新评论
  • 总共0条评论