[轉]php curl 設定host curl_setopt CURLOPT_HTTPHEADER 指定host

來源:互聯網
上載者:User

標籤:http   os   io   使用   ar   檔案   div   cti   sp   

From : http://digdeeply.org/archives/10132139.html

我們在開發測試時,有時web伺服器會綁定一個網域名稱,但是因為dns是無法解析的,我們需要設定host檔案去訪問。
但是,如果我們是需要通過curl訪問的話,無法訪問該url的host主機。所以,需要通過指定host的方式來訪問,具體訪問方式如下:
如果是linux下的curl命令:

Example
1 curl --silent -H "Host: www.digdeeply.info" "192.168.0.1/index.php"

如果使用php的curl的話,使用curl_setopt設定一下CURLOPT_HTTPHEADER即可。
請參考以下函數使用:

Example
123456789101112131415161718192021 //httpHeader    設定的 http head 參數 數組形式 如 array(‘Host: digdeeply.info‘)function curl_by_host($url,$postString=‘‘,$httpHeader=‘‘){    $ch = curl_init();    curl_setopt($ch,CURLOPT_URL,$url);    curl_setopt($ch,CURLOPT_POSTFIELDS,$postString);    curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);    curl_setopt($ch,CURLOPT_USERAGENT,$_SERVER[‘HTTP_USER_AGENT‘]);     if(!empty($httpHeader) && is_array($httpHeader))    {        curl_setopt($ch, CURLOPT_HTTPHEADER, $httpHeader);    }    $data = curl_exec($ch);    $info = curl_getinfo($ch);    curl_close($ch);    if(curl_errno($ch)){        return $info;    }    return $data;}
 

[轉]php curl 設定host curl_setopt CURLOPT_HTTPHEADER 指定host

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.