php設定請求頭資訊的方法:1、使用header函數設定請求頭資訊;2、透過fsockopen函數設定請求頭資訊;3、透過使用curl元件設定請求頭資訊。
本文操作環境:Windows7系統、PHP7.1版,DELL G3電腦
php怎麼設定請求頭資訊?
php設定http請求頭訊息和回應頭資訊
設定請求伺服器的頭資訊可以用fsockopen,curl元件,header函數只能用來設定客戶端回應的頭訊息,不能設定伺服器的頭資訊.
一.header函數的用法
header('WWW-Authenticate: Negotiate'); header('User-Agent:Mozilla/5.0);
多個直接要寫多個header,不可以連接在一起
二.fsockopen函數的用法
1.php
\n"; } else { $out = "GET /2.php HTTP/1.1\r\n"; $out .= "Host: test.com\r\n"; $out .= "name:longqiqi\r\n"; $out .= "Connection: Close\r\n\r\n"; fwrite($fp, $out); while (!feof($fp)) { echo fgets($fp, 128); } fclose($fp); } ?>
2.php
print_r(getallheaders());//会返回自己设置请求的头信息
三.curl元件的使用
1.php
#2.php
print_r(getallheaders());//會返回自己設定請求的頭資訊
推薦學習:《PHP影片教學》
以上是php怎麼設定請求頭訊息的詳細內容。更多資訊請關注PHP中文網其他相關文章!