php 資訊採集程式碼

來源:互聯網
上載者:User

複製代碼 代碼如下:<?
//採集首頁地址
$url="http://emotion.pclady.com.cn/skills/";
//擷取頁面代碼
$rs=file_get_contents($url);
//設定匹配正則
//$fp=fopen("text.txt","a");
//$fw=fwrite($fp,$rs);
//fclose($fp);
/*<I class=titles><A
href="http://emotion.pclady.com.cn/skills/0903/376476.html"
target=_blank>留住你身邊的好男人</A></I>*/
$preg='/<i\s+class=\"titles\"><a\s+href=\"[^>]+\">(.*)<\/a><\/i>/i';
//進行正則搜尋
preg_match_all($preg,$rs,$title);
//計算標題數量
$count=count($title[0]);
echo $count."<br>";
//通過標題數量進行內容採集
for ($i=0;$i<$count;$i++){

//設定內容頁地址
$pr='/<a\s+href=\"[^>]+\">/isU';
preg_match_all($pr,$title[0][$i],$jurl);
$substr=substr($jurl[0][0],9);
$curl=substr($substr,0,-18);
//擷取內容頁代碼
$c=file_get_contents($curl);
//設定內容頁匹配正則
$pc='/<a\s+href=\"[^>]+\">/i';
//進行正則匹配搜尋
preg_match($pc,$c,$content);
//輸出標題
echo $title[0][$i]."<br>";
echo $title[1][$i]."<br>";
$concount=count($content[0]);
echo $concount."<br>";
echo $content[0][0];
for ($j=0;$j<$concount;$j++){

}
}
?>

通過檢測,$c已經是內容頁的資料流了,可是$pc這個的Regex為什麼只匹配<這個字元其他的都沒有呢,是因為我上面用了subsrt()函數嗎?還是什麼問題?麻煩各位大俠指點迷津啊?

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.