簡體   English   中英

curl錯誤HTTP狀態代碼0-來自服務器的空回復

[英]curl error HTTP status code 0— empty reply from server

我正在嘗試刪除一個網站,但它始終說Empty Reply from server可以讓任何人查看code並告訴我我在做什么錯?

這是code

function spider($url){
        $header = array(
            "Host" => "www.example.net",
            //"Accept-Encoding:gzip,deflate,sdch",
            "Accept-Language:en-US,en;q=0.8",
            "Cache-Control:max-age=0",
            "Connection:keep-alive","Content-Length:725","Content-Type:application/x-www-form-urlencoded",
            'Accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8'
            ,"X-Requested-With:XMLHttpRequest"
        );
        $cookie = "cookie.txt";
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_HEADER, 0); // return headers 0 no 1 yes
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // return page 1:yes
        curl_setopt($ch, CURLOPT_TIMEOUT, 200); // http request time-out 20 seconds
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); // Follow redirects, need this if the URL changes
        curl_setopt($ch, CURLOPT_MAXREDIRS, 2); //if http server gives redirection response
        curl_setopt($ch, CURLOPT_USERAGENT,
        "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.7) Gecko/20070914 Firefox/2.0.0.7");
        curl_setopt($ch, CURLOPT_COOKIEJAR, realpath( $cookie)); // cookies storage / here the changes have been made
        curl_setopt($ch, CURLOPT_COOKIEFILE, realpath( $cookie));
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // false for https
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
        curl_setopt($ch, CURLOPT_POST, true);
        curl_setopt($ch, CURLOPT_POSTFIELDS,"view=ViewDistrict&param=7&uniqueid=1397991494188&PHPSESSID=f134vrnv7glosgojvf4n1mp7o2&page=http%3A%2F%2Fwww.example.com%2Fxhr.php");
        curl_setopt($ch, CURLOPT_REFERER, $url);
        curl_setopt($ch, CURLOPT_REFERER, "http://www.example.com/");
        $data = curl_exec($ch); // execute the http request
        $info = curl_getinfo($ch);
        curl_close($ch); // close the connection

        return $data;
}

這是function call

echo spider("http://www.example.net/");

編輯

Array ( [url] => http://www.example.net/ [content_type] => text/html [http_code] => 301 [header_size] => 196 [request_size] => 840 [filetime] => -1 [ssl_verify_result] => 0 [redirect_count] => 1 [total_time] => 61.359 [namelookup_time] => 0 [connect_time] => 0.281 [pretransfer_time] => 0.281 [size_upload] => 0 [size_download] => 0 [speed_download] => 0 [speed_upload] => 0 [download_content_length] => 178 [upload_content_length] => 0 [starttransfer_time] => 60.593 [redirect_time] => 0.766 [certinfo] => Array ( ) [redirect_url] => ) Empty reply from server

現在是標題,我也更新了post data ,現在是curl_setopt($ch, CURLOPT_POSTFIELDS,"view=ViewDistrict&param=7&uniqueid=".time(). rand(101,500)."&PHPSESSID=f134vrnv7glosgojvf4n1mp7o2&page=http%3A%2F%2Fexample.com%2Fxhr.php");

並且還從headers刪除了"X-Requested-With:XMLHttpRequest"

您是否嘗試過從標題中刪除它?

X-Requested-With:XMLHttpRequest

我的猜測是您的問題出在這行:

curl_setopt(
    $ch,
    CURLOPT_POSTFIELDS,
    "view=ViewDistrict&param=7&uniqueid=1397991494188&PHPSESSID=f134vrnv7glosgojvf4n1mp7o2&page=http%3A%2F%2Fwww.example.com%2Fxhr.php"
);

請注意,您正在傳遞PHPSESSID的值。 我猜您是通過訪問該網站復制並粘貼了網址,對嗎? 當您訪問站點時,該會話ID可能是有效的,但是現在有效的可能性很小。 而且,如果服務器不喜歡會話ID,則很可能不會為您提供任何數據。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM