標籤: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