|
方法1: 用file_get_contents 以get方式獲取內容:
<?php$url='http://www.jb51.NET/';$html = file_get_contents($url);echo $html;?>
方法2: 用fopen打開url, 以get方式獲取內容:
<?php$fp = fopen($url, ‘r');stream_get_meta_data($fp);while(!feof($fp)) {$result .= fgets($fp, 1024);}echo “url body: $result”;fclose($fp);?>
方法3:用file_get_contents函數,以post方式獲取url
<?php$data = array (‘foo' => ‘bar');$data = http_build_query($data);$opts = array (‘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/e/admin/test.html', false, $context);echo $html;?>
方法4:用fsockopen函數打開url,以get方式獲取完整的數據,包括header和body,fsockopen需要 php.ini 中 allow_url_fopen 選項開啟
<?phpfunction get_url ($url,$cookie=false){$url = parse_url($url);$query = $url[path].”?”.$url[query];echo “Query:”.$query;$fp = fsockopen( $url[host], $url[port]?$url[port]:80 , $errno, $errstr, 30);if (!$fp) {return false;} else {$request = “GET $query HTTP/1.1rn”;$request .= “Host: $url[host]rn”;$request .= “Connection: Closern”;if($cookie) $request.=”Cookie: $cookien”;$request.=”rn”;fwrite($fp,$request);while(!@feof($fp)) {$result .= @fgets($fp, 1024);}fclose($fp);return $result;}}//獲取url的html部分,去掉headerfunction GetUrlHTML($url,$cookie=false){$rowdata = get_url($url,$cookie);if($rowdata){$body= stristr($rowdata,”rnrn”);$body=substr($body,4,strlen($body));return $body;}return false;}?>
方法5:用fsockopen函數打開url,以POST方式獲取完整的數據,包括header和body
<?phpfunction HTTP_Post($URL,$data,$cookie, $referrer=”"){// parsing the given URL$URL_Info=parse_url($URL);// Building referrerif($referrer==”") // if not given use this script as referrer$referrer=”111″;// making string from $dataforeach($data as $key=>$value)$values[]=”$key=”.urlencode($value);$data_string=implode(“&”,$values);// Find out which port is needed 主站蜘蛛池模板: 中国一级特黄视频 | 久久亚 | 国产精品免费一区二区三区四区 | 成人在线视频免费观看 | 欧美视频在线一区 | www.国产.com| 国产成人在线免费 | 九九综合 | 亚洲视频一区在线 | 亚洲国产高清高潮精品美女 | 在线一区二区三区 | 精品不卡| 男人av在线播放 | 亚洲入口| 久久高清国产视频 | 久久精品国产久精国产 | 成人在线免费观看视频 | 99色视频| 久草色播 | 蜜桃在线播放 | xxxcom在线观看 | 日本午夜视频 | 中文字幕一区二区不卡 | 国产精品午夜电影 | 精品国产一区二区三区在线观看 | 一区二区三区电影在线观看 | 中文字幕免费在线 | 成人在线免费视频 | 亚洲精品久久久久中文字幕二区 | 日韩毛片中文字幕 | 国产日韩欧美精品一区二区三区 | 国产精品一区二区久久 | 欧美午夜一区二区三区免费大片 | 狠狠av | 久久er99热精品一区二区 | 成人中文字幕av | 国产精品日韩欧美一区二区 | 欧美日韩国产在线 | 精品国产黄a∨片高清在线 成人区精品一区二区婷婷 日本一区二区视频 | 精品国产欧美一区二区三区成人 | 一级毛片免费看 |