gpt4 book ai didi

php - 从 PHP 中的当前请求中获取 http header

转载 作者:IT王子 更新时间:2023-10-29 00:54:28 26 4
gpt4 key购买 nike

是否可以用PHP获取当前请求的http headers?我没有使用 Apache 作为网络服务器,而是使用 nginx。

我尝试使用 getallheaders() 但我收到 Call to undefined function getallheaders()

最佳答案

摘自某人写的文档 comment ...

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

关于php - 从 PHP 中的当前请求中获取 http header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13224615/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com