溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

php中設(shè)置請求頭信息的方法

發(fā)布時(shí)間:2021-06-17 10:24:31 來源:億速云 閱讀:1426 作者:小新 欄目:編程語言

小編給大家分享一下php中設(shè)置請求頭信息的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

php設(shè)置請求頭信息的方法:1、使用header函數(shù)設(shè)置請求頭信息;2、通過fsockopen函數(shù)設(shè)置請求頭信息;3、通過使用curl組件設(shè)置請求頭信息。

本文操作環(huán)境:Windows7系統(tǒng)、PHP7.1版,DELL G3電腦

php怎么設(shè)置請求頭信息?

php設(shè)置http請求頭信息和響應(yīng)頭信息

設(shè)置請求服務(wù)器的頭信息可以用fsockopen,curl組件,header函數(shù)只能用來設(shè)置客戶端響應(yīng)的頭信息,不能設(shè)置服務(wù)器的頭信息.

一.header函數(shù)的用法

  header('WWW-Authenticate: Negotiate');
  header('User-Agent:Mozilla/5.0);

多個(gè)直接要寫多個(gè)header,不可以連接在一起

二.fsockopen函數(shù)的用法

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());//會返回自己設(shè)置請求的頭信息

三.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);  //設(shè)置頭信息的地方
 
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());//會返回自己設(shè)置請求的頭信息

以上是“php中設(shè)置請求頭信息的方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI