php設定回應頭資訊的方法是:使用fsockopen()函數來設置,例如【
#本文操作環境:windows10系統、php7、thinkpad t480電腦。
在PHP中如果我們需要設定請求伺服器的回應頭資訊可以使用fsockopen,curl元件。可能有的小夥伴會瞬間想到header()函數,但是header()函數只能用來設定客戶端回應的頭訊息,它是無法設定伺服器的頭訊息的。我們舉個例子來說明下。
#例如:
一、header函數的用法
header('WWW-Authenticate: Negotiate'); header('User-Agent:Mozilla/5.0);
多個直接要寫多個header,不可以連接在一起
二、fsockopen函數的用法
1、php
<?php $fp = fsockopen("test.com", 80, $errno, $errstr, 30); if (!$fp) { echo "$errstr ($errno)<br />\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
<?php function FormatHeader($url, $myIp = null,$xml = null) { // 解悉url $temp = parse_url($url); $query = isset($temp['query']) ? $temp['query'] : ''; $path = isset($temp['path']) ? $temp['path'] : '/'; $header = array ( "POST {$path}?{$query} HTTP/1.1", "Host: {$temp['host']}", "Content-Type: text/xml; charset=utf-8", 'Accept: */*', "Referer: http://{$temp['host']}/", 'User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1)', "X-Forwarded-For: {$myIp}", "Content-length: 380", "Connection: Close" ); return $header; } $interface = 'http://test.com/2.php'; $header = FormatHeader($interface,'10.1.11.1'); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $interface); curl_setopt($ch, CURLOPT_HTTPHEADER, $header); //设置头信息的地方 curl_setopt($ch, CURLOPT_HEADER, 0); //不取得返回头信息 curl_setopt($ch, CURLOPT_TIMEOUT, 5); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); var_dump($result); ?>
2 、php
print_r(getallheaders());
會回傳自己設定請求的頭資訊
#推薦學習:php訓練
以上是php怎麼設定響應頭訊息的詳細內容。更多資訊請關注PHP中文網其他相關文章!