php 获取百度的热词数据_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > php 获取百度的热词数据

php 获取百度的热词数据

 2012/2/17 9:26:46  xiaoyangok  程序员俱乐部  我要评论(0)
  • 摘要:/***获取百度的热词*@user小杰*@fromhttp://www.isharey.com/?p=354*@returnarray返回百度的热词数据(数组返回)*//***获取百度的热词*@user小杰*@fromhttp://www.isharey.com/?p=354*@returnarray返回百度的热词数据(数组返回)*/functiongetBaiduHotKeyWord(){$templateRss=file_get_contents('http://top.baidu
  • 标签:PHP 百度 数据
/**
* 获取百度的热词
* @user   小杰
* @from   http://www.isharey.com/?p=354
* @return array  返回百度的热词数据(数组返回)
*/
/**
 * 获取百度的热词
 * @user   小杰
 * @from   http://www.isharey.com/?p=354
 * @return array  返回百度的热词数据(数组返回)
 */
function getBaiduHotKeyWord()
{
    $templateRss = file_get_contents('http://top.baidu.com/rss_xml.php?p=top10');
    If (preg_match('/<table>(.*)<\/table>/is', $templateRss, $_description)) {
        $templateRss = $_description [0];
        $templateRss = str_replace("&", "&amp;", $templateRss);
    }
    $templateRss = "<?xml version=\"1.0\" encoding=\"GBK\"?>" . $templateRss;
    $xml = simplexml_load_String($templateRss);
    foreach ($xml->tbody->tr as $temp) {
        if (!empty ($temp->td->a)) {
            $keyArray [] = trim(($temp->td->a));
        }
    }
    return $keyArray;
}
发表评论
用户名: 匿名