欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php 获取百度的热词数据的代码

程序员文章站 2022-04-28 15:46:25
复制代码 代码如下:
复制代码 代码如下:

<?php
/**
* 获取百度的热词
* @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("&", "&", $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;
}
print_r(getbaiduhotkeyword());