如何在 PHP 中處理標頭檢索
要求: 讀取 PHP 中的任何請求標頭。
單一標題解決方案:
當使用單一特定標頭而不是所有標頭時,最有效的方法是:
// Replace XXXXXX_XXXX with the header you need, in uppercase and '-' replaced by '_' $headerValue = $_SERVER['HTTP_XXXXXX_XXXX'];
檢索所有標頭(Apache 模組或FastCGI) :
使用 Apache 或FastCGI:
1。 apache_request_headers():
傳回包含所有標頭值的陣列。
2.內建方法:
foreach ($_SERVER as $key => $value) { if (substr($key, 0, 5) !== 'HTTP_') { continue; } // Process headers... }
擷取所有標頭(其他平台):
其他平台,可以使用用戶態實現:
function getRequestHeaders() { // ... (Implementation same as above) }
進階注意:
對於 PHP 5.4 及更高版本, getallheaders() 函數也可以用作 apache_request_headers() 的跨平台等效函數。
以上是如何在 PHP 中有效率地檢索請求頭?的詳細內容。更多資訊請關注PHP中文網其他相關文章!