よく見てみると、次のプログラムに、Web ページを収集するために PHP でよく使用される関数 file_get_contents() があります。
コードは次のとおりです |
コードをコピー |
/*
Baidu に含まれるコードを取得します
*/
関数百度($s){
$baidu="http://www.baidu.com/s?wd=site%3A".$s;
$site=file_get_contents($baidu);
//$site=iconv("gb2312", "UTF-8", $site);
ereg("関連する Web ページ (.*) が見つかりました", $site,$count);
$count=str_replace("関連する Web ページを見つける","",$count);
$count=str_replace("記事,","",$count);
$count=str_replace("約","",$count);
$count=str_replace(",","",$count);
$count[0] を返します;
}
echo baidu(www.hzhuti.com) //Baidu に含まれる良いトピックの数を取得します
?>
|
百度の熱い言葉をゲット
コードは次のとおりです |
コードをコピー |
/**
* * @user 小杰
* @return array Baiduのホットワードデータを返します(配列リターン) */
関数 getBaiduHotKeyWord()
{
$templateRss = file_get_contents('http://top.baidu.com/rss_xml.php?p=top10');
If (preg_match('/ /is', $templateRss, $_description)) {
$templateRss = $_description [0];
$templateRss = str_replace("&", "&", $templateRss);
}
$templateRss = "" .
$xml = simplexml_load_String($templateRss);
foreach ($xml->tbody->tr as $temp) {
if (!empty ($temp->td->a)) {
$keyArray [] = トリム(($temp->td->a));
}
}
$keyArray を返します。
}
print_r(getBaiduHotKeyWord());
インターネットでこれを見つけたので、次のコードをphpファイルに書き込みます 。
Baidu が含まれており、Baidu スナップショット時間
|