PHP如何訪問URL?php訪問URL的方法總結(代碼)

來源:互聯網
上載者:User
這篇文章給大家介紹的內容是關於PHP如何訪問URL?php訪問URL的方法總結(代碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。

1、fopen方式

//訪問指定URL函數function access_url($url) {        if($url=='') return false;       $fp = fopen($url, 'r') or exit('Open url faild!');        if($fp){       while(!feof($fp)) {            $file .= fgets($fp) . "";        }        fclose($fp);         }       return $file;    }

2、file_get_contents方式 (開啟遠程檔案的時候會造成CPU飆升。file_get_contents其實也可以post)

//以post方式擷取url$data = array ('foo' => 'bar');$data = http_build_query($data);$opts['http'] = array (  'method' => 'POST',  'header'=> "Content-type:application/x-www-form-urlencodedrn".  "Content-Length: " . strlen($data) . "rn",  'content' => $data);$context = stream_context_create($opts);$html = file_get_contents('http://localhost/test.html', false, $context);echo $html;

3、curl方式

function curl_file_get_contents($durl){      $ch = curl_init();      curl_setopt($ch, CURLOPT_URL, $durl);      curl_setopt($ch, CURLOPT_RETURNTRANSFER, true) ; // 擷取資料返回        curl_setopt($ch, CURLOPT_BINARYTRANSFER, true) ; // 在啟用 CURLOPT_RETURNTRANSFER 時候將擷取資料返回        $data = curl_exec($ch);      curl_close($ch);      return $data;  }

4、fsockopen方式(只能擷取網站首頁資訊,其他頁面不可以)

$fp = fsockopen("www.example.com", 80, $errno, $errstr, 30);     (!$fp) {        echo "$errstr ($errno)<br />\n";     }else {        $out="GET / HTTP/1.1\r\n";        $out.="Host: www.example.com\r\n";        $out.="Connection: Close\r\n\r\n";        fwrite($fp, $out);        while (!feof($fp)) {            echo fgets($fp, 128);        }     fclose($fp);     }
相關文章

聯繫我們

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