搜尋
首頁php教程PHP源码php 获取页面内容

php 获取页面内容

May 25, 2016 pm 05:04 PM

php 获取页面内容

方法1: 用file_get_contents 以get方式获取内容 
<?php 
$url=&#39;http://www.domain.com/?para=123&#39;; 
$html = file_get_contents($url); 
echo $html; 
?> 
 
方法2:用file_get_contents函数,以post方式获取url 
<?php 
$url = &#39;http://www.domain.com/test.php?id=123&#39;; 
$data = array (&#39;foo&#39; => &#39;bar&#39;); 
$data = http_build_query($data); 
 
$opts = array ( 
&#39;http&#39; => array ( 
   &#39;method&#39; => &#39;POST&#39;, 
   &#39;header&#39;=> "Content-type: application/x-www-form-urlencoded\r\n" . 
                     "Content-Length: " . strlen($data) . "\r\n", 
   &#39;content&#39; => $data
) 
); 
$ctx = stream_context_create($opts); 
$html = @file_get_contents($url,&#39;&#39;,$ctx); 
 
如果需要再传递cookie数据,则把 
&#39;header&#39;=> "Content-type: application/x-www-form-urlencoded\r\n" . 
                  "Content-Length: " . strlen($data) . "\r\n", 
修改为 
&#39;header&#39;=> "Content-type: application/x-www-form-urlencoded\r\n" . 
                 "Content-Length: " . strlen($data) . "\r\n". 
                 "cookie:cookie1=c1;cookie2=c2\r\n" ; 
即可 
 
方法3: 用fopen打开url, 以get方式获取内容 
<?php 
$fp = fopen($url, &#39;r&#39;); 
$header = stream_get_meta_data($fp);//获取报头信息 
while(!feof($fp)) { 
$result .= fgets($fp, 1024); 
} 
echo "url header: {$header} <br>": 
echo "url body: $result"; 
fclose($fp); 
?> 
 
方法4: 用fopen打开url, 以post方式获取内容 
<?php 
$data = array (&#39;foo2&#39; => &#39;bar2&#39;,&#39;foo3&#39;=>&#39;bar3&#39;); 
$data = http_build_query($data); 
 
$opts = array ( 
&#39;http&#39; => array ( 
&#39;method&#39; => &#39;POST&#39;, 
&#39;header&#39;=> "Content-type: application/x-www-form-urlencoded\r\nCookie:cook1=c3;cook2=c4\r\n" . 
"Content-Length: " . strlen($data) . "\r\n", 
&#39;content&#39; => $data
) 
); 
 
$context = stream_context_create($opts); 
$html = fopen(&#39;http://www.test.com/zzzz.php?id=i3&id2=i4&#39;,&#39;rb&#39; ,false, $context); 
$w=fread($html,1024); 
echo $w; 
?> 
 
方法5:用fsockopen函数打开url,以get方式获取完整的数据,包括header和body 
<?php 
function 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.1\r\n"; 
$request .= "Host: $url[host]\r\n"; 
$request .= "Connection: Close\r\n"; 
if($cookie) $request.="Cookie:   $cookie\n"; 
$request.="\r\n"; 
fwrite($fp,$request); 
while(!@feof($fp)) { 
$result .= @fgets($fp, 1024); 
} 
fclose($fp); 
return $result; 
} 
} 
//获取url的html部分,去掉header 
function GetUrlHTML($url,$cookie=false) 
{ 
$rowdata = get_url($url,$cookie); 
if($rowdata) 
{ 
$body= stristr($rowdata,"\r\n\r\n"); 
$body=substr($body,4,strlen($body)); 
return $body; 
} 
 
   return false; 
} 
?> 
 
方法6:用fsockopen函数打开url,以POST方式获取完整的数据,包括header和body 
<?php 
function HTTP_Post($URL,$data,$cookie, $referrer="") 
{ 
 
   // parsing the given URL 
$URL_Info=parse_url($URL); 
 
   // Building referrer 
if($referrer=="") // if not given use this script as referrer 
$referrer="111"; 
 
   // making string from $data 
foreach($data as $key=>$value) 
$values[]="$key=".urlencode($value); 
$data_string=implode("&",$values); 
 
   // Find out which port is needed - if not given use standard (=80) 
if(!isset($URL_Info["port"])) 
$URL_Info["port"]=80; 
 
   // building POST-request: 
$request.="POST ".$URL_Info["path"]." HTTP/1.1\n"; 
$request.="Host: ".$URL_Info["host"]."\n"; 
$request.="Referer: $referer\n"; 
$request.="Content-type: application/x-www-form-urlencoded\n"; 
$request.="Content-length: ".strlen($data_string)."\n"; 
$request.="Connection: close\n"; 
 
   $request.="Cookie:   $cookie\n"; 
 
   $request.="\n"; 
$request.=$data_string."\n"; 
 
   $fp = fsockopen($URL_Info["host"],$URL_Info["port"]); 
fputs($fp, $request); 
while(!feof($fp)) { 
$result .= fgets($fp, 1024); 
} 
fclose($fp); 
 
   return $result; 
} 
 
?> 
 
方法7:使用curl库,使用curl库之前,可能需要查看一下php.ini是否已经打开了curl扩展 
<?php 
$ch = curl_init(); 
$timeout = 5; 
curl_setopt ($ch, CURLOPT_URL, &#39;http://www.domain.com/&#39;); 
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); 
$file_contents = curl_exec($ch); 
curl_close($ch); 
 
echo $file_contents; 
?>

                   

以上就是php 获取页面内容的内容,更多相关内容请关注PHP中文网(www.php.cn)!

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

SecLists

SecLists

SecLists是最終安全測試人員的伙伴。它是一個包含各種類型清單的集合,這些清單在安全評估過程中經常使用,而且都在一個地方。 SecLists透過方便地提供安全測試人員可能需要的所有列表,幫助提高安全測試的效率和生產力。清單類型包括使用者名稱、密碼、URL、模糊測試有效載荷、敏感資料模式、Web shell等等。測試人員只需將此儲存庫拉到新的測試機上,他就可以存取所需的每種類型的清單。

mPDF

mPDF

mPDF是一個PHP庫,可以從UTF-8編碼的HTML產生PDF檔案。原作者Ian Back編寫mPDF以從他的網站上「即時」輸出PDF文件,並處理不同的語言。與原始腳本如HTML2FPDF相比,它的速度較慢,並且在使用Unicode字體時產生的檔案較大,但支援CSS樣式等,並進行了大量增強。支援幾乎所有語言,包括RTL(阿拉伯語和希伯來語)和CJK(中日韓)。支援嵌套的區塊級元素(如P、DIV),

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中