欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP接收http请求头信息

程序员文章站 2022-06-27 14:29:21
1、PHP 自带函数 getallheaders() 目前 getallheaders() 只能用于 apache 中。如果想在 nginx 中也能使用,可以使用自定义函数。 2、自定义函数 ......

1、php 自带函数 getallheaders()

  • 目前 getallheaders() 只能用于 apache 中。如果想在 nginx 中也能使用,可以使用自定义函数。
foreach (getallheaders() as $name => $value) {
    echo "$name: $value\n";
}

PHP接收http请求头信息

 

2、自定义函数

function em_getallheaders()
{
    $headers = [];
    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接收http请求头信息