php获取百度的热词数据
程序员文章站
2023-12-24 13:30:03
...
获取百度的热词
/** * 获取百度的热词 * @user 小杰 * @from http://www.php.cn/ * @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("&", "&", $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; }
推荐阅读
-
php获取百度的热词数据
-
google file system 用PHP获取Google AJAX Search API 数据的代码
-
php获取mysql数据库中的所有表名的代码_PHP
-
php使用curl通过代理获取数据的实现方法
-
google file system 用PHP获取Google AJAX Search API 数据的代码
-
PHP实现获取并生成数据库字典的方法
-
C#实现解析百度天气数据,Rss解析百度新闻以及根据IP获取所在城市的方法
-
C#实现解析百度天气数据,Rss解析百度新闻以及根据IP获取所在城市的方法
-
详解WordPress中用于更新和获取用户选项数据的PHP函数
-
PHP生成和获取XML格式数据的方法