foreach (getallheaders() as $name => $value) { echo "$name: $valuen"; }
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視訊教學
以上就是如何用PHP接收http請求頭資訊的詳細內容,更多請關注TW511.COM其它相關文章!