複製程式碼 程式碼如下:
//擷取首頁位址
$url="http:// emotion.pclady.com.cn/skills/";
//取得頁面代碼
$rs=file_get_contents($url);
//設定比對正規
//$fp=fopen( "text.txt","a");
//$fw=fwrite($fp,$rs);
//fclose($fp);
/* href="http://emotion.pclady.com.cn/skills/0903/376476.html"
target=_blank>留住你身邊的好男人 */
$preg='/
//進行正規搜尋
preg_match_all($preg,$rs,$title);
//計算標題數量
$count=count($title[0]);
echo $count ."
";
//透過標題數量進行內容擷取
for ($i=0;$i//設定內容頁位址
$pr='/
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='/
//進行正規比對搜尋
preg_match ($pc,$c,$content);
//輸出標題
echo $title[0][$i]."
";
echo $title[1][$i ]."
";
$c
echo $concount."
";
echo $content[0][0];
for ($j=0;$ j}
}
?>