您好,登錄后才能下訂單哦!
抓取到的內容在通過正則表達式做一下過濾就得到了你想要的內容。
file_get_contents() 把整個文件讀入一個字符串中。
Java代碼
<meta charset="utf-8">
<?php
$url = "http://onestopweb.iteye.com/";
$contents = file_get_contents($url);
//如果出現中文亂碼使用下面代碼
//$getcontent = iconv("gb2312", "utf-8",$contents);
echo $contents;
?>
curl_init() 初始化一個新的會話,返回一個cURL句柄下載 ,供curl_setopt(), curl_exec()和curl_close() 函數使用。
Java代碼
<meta charset="utf-8">
<?php
$url = "http://onestopweb.iteye.com/";
$ch = curl_init();
$timeout = 5;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
//在需要用戶檢測的網頁里需要增加下面兩行
//curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
//curl_setopt($ch, CURLOPT_USERPWD, US_NAME.":".US_PWD);
$contents = curl_exec($ch);
curl_close($ch);
echo $contents;
?>
fopen->fread->fclose 文件流
fopen() 函數打開文件或者 URL。
fread() 函數讀取文件。
fclose() 函數關閉一個打開文件。
Java代碼
<meta charset="utf-8">
<?php
$handle = fopen ("http://onestopweb.iteye.com/", "rb");
$contents = "";
do {
$data = fread($handle, 1024);
if (strlen($data) == 0) {
break;
}
$contents .= $data;
} while(true);
fclose ($handle);
echo $contents;
?>
PS:
1.使用file_get_contents和fopen必須空間開啟allow_url_fopen。方法:編輯php.ini,設置allow_url_fopen = On,allow_url_fopen關閉時fopen和file_get_contents都不能打開遠程文件。 下載
2.使用curl必須空間開啟curl。方法:windows下修改php.ini,將extension=php_curl.dll前面的分號去掉,而且需要拷貝ssleay32.dll和libeay32.dll到 C:\Windows\system 或者 C:\Windows\System32。
如圖:
我的系統是WIN7的64位,把兩個dll文件放在這個文件夾中就起效果了。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。