導航:首頁 > 編程語言 > php怎麼查看別人的網頁

php怎麼查看別人的網頁

發布時間:2023-06-19 07:37:31

php怎麼抓取其它網站數據

可以用以下4個方法來抓取網站 的數據:

1. 用 file_get_contents 以 get 方式獲取內容:
?

$url = 'http://localhost/test2.php';
$html = file_get_contents($url);
echo $html;

2. 用fopen打開url,以get方式獲取內容
?

$url = 'http://localhost/test2.php';
$fp = fopen($url, 'r');
stream_get_meta_data($fp);
$result = '';
while(!feof($fp))
{
$result .= fgets($fp, 1024);
}
echo "url body: $result";
fclose($fp);

3. 用file_get_contents函數,以post方式獲取url
?

$data = array(
'foo'=>'bar',
'baz'=>'boom',
'site'=>'www.jb51.net',
'name'=>'nowa magic');

$data = http_build_query($data);

//$postdata = http_build_query($data);
$options = array(
'http' => array(
'method' => 'POST',
'header' => 'Content-type:application/x-www-form-urlencoded',
'content' => $data
//'timeout' => 60 * 60 // 超時時間(單位:s)
)
);

$url = "http://localhost/test2.php";
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);

echo $result;

4、使用curl庫,使用curl庫之前,可能需要查看一下php.ini是否已經打開了curl擴展

$url = 'http://localhost/test2.php?site=jb51.net';
$ch = curl_init();
$timeout = 5;
curl_setopt ($ch, CURLOPT_URL, $url);
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如何當前頁面顯示其他網頁

設置一個變數儲存url,然後使用include或者require包含近來,不知道是否是你想要的效果。
<?php

$url = '網頁地址';

include_once($url);

?>

❹ 如何使用PHP查看其他網頁HTML源碼

1.php採集函數有幾個系統的,說出來你自己查閱手冊。然後編寫代碼測試:
file_get_contents fscokopen curl
2.抓取玩網頁之後,可以利用正則匹配的方式來獲取你要的指定標簽內的信息

❺ php獲取指定網頁內容

一、用file_get_contents函數,以post方式獲取url

<?php

$url='http://www.domain.com/test.php?id=123';

$data=array('foo'=>'bar');

$data= http_build_query($data);

$opts=array(

'http'=>array(

'method'=>'POST',

'header'=>"Content-type: application/x-www-form-urlencoded " .

"Content-Length: " .strlen($data) ." ",

'content'=>$data

)

);

$ctx= stream_context_create($opts);

$html= @file_get_contents($url,'',$ctx);

二、用file_get_contents以get方式獲取內容

<?php

$url='http://www.domain.com/?para=123';

$html=file_get_contents($url);

echo$html;

?>

三、用fopen打開url, 以get方式獲取內容

<?php

$fp=fopen($url,'r');

$header= stream_get_meta_data($fp);//獲取報頭信息

while(!feof($fp)) {

$result.=fgets($fp, 1024);

}

echo"url header: {$header} <br>":

echo"url body: $result";

fclose($fp);

?>

四、用fopen打開url, 以post方式獲取內容

<?php

$data=array('foo2'=>'bar2','foo3'=>'bar3');

$data= http_build_query($data);

$opts=array(

'http'=>array(

'method'=>'POST',

'header'=>"Content-type: application/x-www-form-

urlencoded Cookie:cook1=c3;cook2=c4 " .

"Content-Length: " .strlen($data) ." ",

'content'=>$data

)

);

$context= stream_context_create($opts);

$html=fopen('http://www.test.com/zzzz.php?id=i3&id2=i4','rb',false,$context);

$w=fread($html,1024);

echo$w;

?>

五、使用curl庫,使用curl庫之前,可能需要查看一下php.ini是否已經打開了curl擴展

<?php

$ch= curl_init();

$timeout= 5;

curl_setopt ($ch, CURLOPT_URL,'http://www.domain.com/');

curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT,$timeout);

$file_contents= curl_exec($ch);

curl_close($ch);

echo$file_contents;

?>

❻ 如何查看別人網站的PHP源代碼

這個是不能直接查看的只有幾種途徑:

  1. PHP是編譯的運行程序,在瀏覽器看到的是編譯執行之後的展示頁面,並不是源代碼。

  2. 網站站長,公開共享免費提供網站源碼整站下載的,可以拿到查看。

  3. 網站提供後台,給一定的人群,有一定的管理許可權。可以解除代碼。

  4. 伺服器,部分網站因為某些原因,伺服器是共享的,可以看到源代碼。

❼ PHP獲取網頁內容的幾種方法

簡單的收集下PHP下獲取網頁內容的幾種方法:
用file_get_contents,以get方式獲取內容。
用fopen打開url,以get方式獲取內容。
使用curl庫,使用curl庫之前,可能需要查看一下php.ini是否已經打開了curl擴展。
用file_get_contents函數,以post方式獲取url。
用fopen打開url,以post方式獲取內容。
用fsockopen函數打開url,獲取完整的數據,包括header和body。

閱讀全文

與php怎麼查看別人的網頁相關的資料

熱點內容
聖劍勇者安卓怎麼操作 瀏覽:543
如何給好友加密消息 瀏覽:860
視頻加密失敗怎麼辦 瀏覽:502
中國最好的加密機 瀏覽:717
什麼是工藝壓縮機 瀏覽:598
老蓋聊技術dos命令 瀏覽:525
雲伺服器租多大的 瀏覽:883
加密和認證哪個好 瀏覽:184
好游快爆app如何同步 瀏覽:622
程序員完美辦公環境 瀏覽:408
有關程序員的魔咒 瀏覽:16
windows工具菜單包含的命令 瀏覽:565
python中文詞語數 瀏覽:439
安卓直屏播放源碼 瀏覽:54
吉林高配伺服器雲空間雲主機 瀏覽:305
51aspx源碼打包 瀏覽:592
我的世界怎麼可以搶伺服器 瀏覽:293
Python多線程最大線程限制 瀏覽:634
python圓形圖片 瀏覽:785
jsp程序設計pdf 瀏覽:992