码迷,mamicode.com
首页 > 其他好文 > 详细

nginx下用getallheaders

时间:2019-01-21 17:54:11      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:nginx   turn   each   substr   ret   return   name   exist   http   

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;
}
}

nginx下用getallheaders

标签:nginx   turn   each   substr   ret   return   name   exist   http   

原文地址:https://www.cnblogs.com/chenkg/p/10299910.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!