php擷取http請求的頭資訊的方法

來源:互聯網
上載者:User
php擷取http請求的頭資訊的方法

<?phpforeach (getallheaders() as $name => $value) {echo "$name: $value\n";}?>

這個函數只能在apache環境下使用,iis或者nginx並不支援,可以通過自訂函數來實現。

<?phpif (!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;}}?>

看下列印出的結果:

<?phpprint_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請求的頭資訊的方法 的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

相關文章:

PHP擷取http請求的頭資訊實現步驟

php HTTP請求類,支援GET,POST,Multipart/form-data

php實現的http請求封裝樣本

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.