PHP에서 http 요청의 헤더 정보를 얻는 방법
<?php foreach (getallheaders() as $name => $value) { echo "$name: $value\n"; } ?>
이 기능은 Apache 환경에서만 사용할 수 있으며 iis 또는 nginx에서는 지원하지 않습니다. 기능.
<?php 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; } } ?>
인쇄된 결과 보기:
<?php print_r(getallheaders());
결과 얻기:
Array ( [Accept] => */* [Accept-Language] => zh-cn [Accept-Encoding] => gzip, deflate [User-Agent] => Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727) [Host] => localhost [Connection] => Keep-Alive )
위는 php에서 헤더를 가져오는 방법의 내용입니다. http 요청 정보, 더 많은 관련 내용을 보려면 PHP 중국어 웹사이트(www.php.cn)를 참고하세요!
관련 기사: