抓取到的內(nèi)容在通過正則表達(dá)式做一下過濾就得到了你想要的內(nèi)容。
成都網(wǎng)站制作,成都營銷型網(wǎng)站-創(chuàng)新互聯(lián)科技公司專注營銷型網(wǎng)站建設(shè)及定制型網(wǎng)站開發(fā)。致力為您建設(shè)最有價值的網(wǎng)站,服務(wù)熱線:13518219792。
file_get_contents() 把整個文件讀入一個字符串中。
Java代碼
$url = "http://onestopweb.iteye.com/";
$contents = file_get_contents($url);
//如果出現(xiàn)中文亂碼使用下面代碼
//$getcontent = iconv("gb2312", "utf-8",$contents);
echo $contents;
?>
curl_init() 初始化一個新的會話,返回一個cURL句柄下載 ,供curl_setopt(), curl_exec()和curl_close() 函數(shù)使用。
Java代碼
$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);
//在需要用戶檢測的網(wǎng)頁里需要增加下面兩行
//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() 函數(shù)打開文件或者 URL。
fread() 函數(shù)讀取文件。
fclose() 函數(shù)關(guān)閉一個打開文件。
Java代碼
$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,設(shè)置allow_url_fopen = On,allow_url_fopen關(guān)閉時fopen和file_get_contents都不能打開遠(yuǎn)程文件。 下載
2.使用curl必須空間開啟curl。方法:windows下修改php.ini,將extension=php_curl.dll前面的分號去掉,而且需要拷貝ssleay32.dll和libeay32.dll到 C:\Windows\system 或者 C:\Windows\System32。
如圖:
我的系統(tǒng)是WIN7的64位,把兩個dll文件放在這個文件夾中就起效果了。