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());
复制代码 代码如下:
<?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());
上一篇: php 破解防盗链图片函数
下一篇: java服务性能优化