如何取出百度某排行榜50条并在每条加前后缀呢
程序员文章站
2022-06-07 13:41:26
...
怎么取出百度某排行榜50条并在每条加前后缀呢
如http://top.baidu.com/buzz?b=26&c=1&fr=topcategory_c1
------解决思路----------------------
帶輸出的完整例子,你好好學習下。
中間你想改什麼,直接改就可以了。
如http://top.baidu.com/buzz?b=26&c=1&fr=topcategory_c1
------解决思路----------------------
帶輸出的完整例子,你好好學習下。
中間你想改什麼,直接改就可以了。
function getContent($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_TIMEOUT, 300);
$response = curl_exec($ch);
if($error=curl_error($ch)){
die($error);
}
curl_close($ch);
$content = iconv('GBK','UTF-8//IGNORE',$response);
return $content;
}
function getKeywords($content){
// keywords
preg_match_all('/(.*?)/is', $content, $keywords);
$data = $keywords[1];
$result = array();
foreach($data as $val){
preg_match_all('/(.*?)/is', $val, $tmp);
array_push($result, array('name'=>$tmp[2][0],'url'=>'http://top.baidu.com'.substr($tmp[1][0],1)));
}
return $result;
}
function getTc($content){
// tc
preg_match_all('/(.*?)/is', $content, $tc);
$data = $tc[1];
$result = array();
foreach($data as $val){
preg_match_all('/(.*?)/is', $val, $tmp);
array_push($result, array('brief'=>$tmp[1][0], 'news'=>$tmp[1][1], 'tieba'=>$tmp[1][2]));
}
return $result;
}
function getNum($content){
// last
preg_match_all('/(.*?)/is', $content, $last); //icon-rise up icon-fall down
$data = $last[1];
$result = array();
foreach($data as $val){
preg_match_all('/(.*?)/is', $val, $tmp);
array_push($result, array('flag'=>str_replace('icon-','',$tmp[1][0]), 'num'=>$tmp[2][0]));
}
return $result;
}
$url = 'http://top.baidu.com/buzz?b=340&c=1&fr=topbuzz_b339_c1';
$content = getContent($url);
$result = array();
$keywords = getKeywords($content);
$tc = getTc($content);
$num = getNum($content);
for($i=0,$len=count($keywords); $i $tmp = array(
'name' => $keywords[$i]['name'],
'url' => $keywords[$i]['url'],
'brief' => $tc[$i]['brief'],
'news' => $tc[$i]['news'],
'tieba' => $tc[$i]['tieba'],
'flag' => $num[$i]['flag'],
'num' => $num[$i]['num']
);
array_push($result, $tmp);
}
?>
baidu
$i = 1;
foreach($result as $val){
?>=$i ?> =$val['name'] ?> 簡介 新聞 貼吧 =$val['num'] ?>
$i++;
}
?>
相关文章
相关视频
- 教你使用PHP数据库迁移工具“Phinx”
- 详解win10下PHP的安装配置(以php5.6为...
- php Swoole实现毫秒定时计划任务(详解)
- PHP安全配置_php技巧
- 如何取出百度某排行榜50条并在每条加前后缀呢
- HTML基础教程之<strong>和<em>
- HTML基础教程之<span>标签
- HTML基础教程之<meta>标签
- HTML <div> 和<span>
- JavaScript数组对象属性length和二维数组
专题推荐
- 独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
- 玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
- 天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论