PHP接收http请求头信息

匿名 (未验证) 提交于 2019-12-02 22:10:10

1、PHP 自带函数 getallheaders()

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

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!