php fsockopen函數發送post,get請求獲得網頁內容(反防採集)

來源:互聯網
上載者:User
關鍵字 網路程式設計 PHP教程

php教程 fsockopen函數發送post,get請求獲得網頁內容(反防採集)

$post =1;
$url = parse_url($url);
$host ='HTTP://www.jzread.com';
$path ='/';
$query ='?action=jzread.com';
$port =80;
 
if($post) {
  $out = "post $path HTTP/1.0rn";
  $out .= "accept: */*rn";
  //$o ut .= "referer: $boardurlrn";
  $out .= "accept-language: zh-cnrn";
  $out .= "content-type: application/x-www-form-urlencodedrn";
  $out .= "user-agent: $_server[HTTP_user_agent]rn";
  $out .= "host: $hostrn";
  $out .= 'content-length: '.strlen($post)." rn";
  $out .= "connection: closern";
  $out .= "cache-control: no-cachern";
  $out .= "cookie: $cookiernrn";
  $out .= $post;
 } else {
  $out = "get $path HTTP/1.0rn";
  $out .= "accept: */*rn";
  //$out .= "re ferer: $boardurlrn";
  $out .= "accept-language: zh-cnrn";
  $out .= "user-agent: $_server[HTTP_user_agent]rn";
  $out .= "host: $hostrn";
  $out .= "connection: closern";
  $out .= "cookie: $cookiernrn";
 }
 $fp = @fsockopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout);
 if(!$fp)
 {
  return '';//note $errstr : $errno rn
 } else {
  return '成功訪 問';
 }
 /*
 fsockopen語法
 
 resource fsockopen ( string $hostname [, int $port = -1 [, int &a mp;$errno [, string &$errstr [, float $timeout = ini_get("default_socket_timeout") ]]]] )
 
 啟動一個通訊端 連接到指定的主機的資源。
    php支援在互聯網領域的目標和unix在所支援的通訊端傳輸清單說明。 所支援的傳輸清單也可以檢索使用stream_get_transports()。
 
 該插座預設會被啟用,阻塞模式。 你可以切換到非阻塞模式使用stream_set_blocking()。
 
 如果上面實例看不懂,就來看個簡的吧


*/

$fp = fsockopen("www.jzread.com", 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />n";
} else {
$out = "get / HTTP/1.1rn";
$out .= "host: www.jzread.comrn";
$out .= "connection: closernrn";
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.