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

 2025-01-15  阅读 335  评论 8  点赞 427

摘要:复制代码 代码如下:
复制代码 代码如下:

<?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());

标签:phpphp教程

评论列表:

  •   xiedaimade
     发布于 4天前回复该评论
  • 写的很不错,学到了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0286秒, 内存占用1.92 MB, 访问数据库29次

冀ICP备19034377号