코드 복사 코드는 다음과 같습니다.
/**
* 바이두의 핫워드 가져오기
* @user 小杰
* @from http://www.isharey.com/?p=354
* @return array 바이두의 핫워드 데이터를 반환합니다(Array 반품)
*/
function 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 = "" $templateRss = simplexml_load_String($templateRss); >foreach ( $xml->tbody->tr as $temp) {
if (!empty ($temp->td->a)) {
$keyArray [] = Trim(( $temp- >td->a));
}
}
return $keyArray;
}
print_r(getBaiduHotKeyWord());
위 내용은 2009nba 결승전 데이터를 포함해 바이두의 핫워드 데이터를 얻기 위한 2009nba 결승전 데이터 PHP 코드를 소개한 것입니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되길 바랍니다.