加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > PHP > 正文

php 论坛采集程序 模拟登陆,抓取页面 实现代码

发布时间:2020-05-25 21:26:29 所属栏目:PHP 来源:互联网
导读:php 论坛采集程序 模拟登陆,抓取页面 实现代码,需要的朋友可以参考下。

<div class="codetitle"><a style="CURSOR: pointer" data="78994" class="copybut" id="copybut78994" onclick="doCopy('code78994')"> 代码如下:<div class="codebody" id="code78994">
<?php
// 吴燕军
// 2009-06-27
// 采集程序php
set_time_limit(0);
//cookie保存目录
$cookie_jar = '/tmp/cookie.tmp';
/函数------------------------------------------------------------------------------------------------------------/
//模拟请求数据
function request($url,$postfields,$cookie_jar,$referer){
$ch = curl_init();
$options = array(CURLOPT_URL => $url,
CURLOPT_HEADER => 0,
CURLOPT_NOBODY => 0,
CURLOPT_PORT => 80,
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => $postfields,
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_FOLLOWLOCATION => 1,
CURLOPT_COOKIEJAR => $cookie_jar,
CURLOPT_COOKIEFILE => $cookie_jar,
CURLOPT_REFERER => $referer
);
curl_setopt_array($ch,$options);
$code = curl_exec($ch);
curl_close($ch);
return $code;
}
//获取帖子列表
function getThreadsList($code){
preg_match_all('/ <!--[.|r|n]? <a href="viewthread.php?tid=(d+)/',$code,$threads);
return $threads[1];
}
//判断该帖子是否存在
function isExits($code){
preg_match('/

指定的主题不存在或已被删除或正在被审核,请返回。 </p>/',$error);
return isset($error[0])?false:true;
}
//获取帖子标题
function getTitle($code){
preg_match('/

[^ </h1>]/',$title_tmp);
$title = $title_tmp[0];
return $title;
}
//获取帖子作者:
function getAuthor($code){
preg_match('/ <a href="space.php?uid=d+" target="_blank" id="userinfod+" onmouSEOver="showMenu(this.id)">.+/',$author_tmp);
$author = strip_tags($author_tmp[0]);
return $author;
}
//获取楼主发表的内容
function getContents($code){
pregmatch('/ <div id="postmessaged+" class="t_msgfont">(.|r|n)? </div>/',$contents_tmp);
$contents = preg_replace('/images//','http://bbs.war3.cn/images/',$contents_tmp[0]);
return $contents;
}
//打印帖子标题
function printTitle($title){
echo "

帖子标题:

",strip_tags($title),"

";
}
//输出帖子作者
function printAuthor($author){
echo "

帖子作者:

",strip_tags($author),"

";
}
//打印帖子内容
function printContents($contents){
echo "

作者发表的内容:

",$contents,"
";
}
//错误
function printError(){
echo " 该帖子不存在! ";
}
/
函数列表end---------------------------------------------------------------------------------------------------/
/
登录论坛 begin/
$url = 'http://bbs.war3.cn/logging.php?action=login';
$postfields='loginfield=username&username=1nject10n& password=xxxxxx&questionid=0&cookietime=315360000& referer=http://bbs.war3.cn/&loginsubmit=提交';
request($url,'');
unset($postfields,$url);
/
登录论坛 end/
/
获取帖子列表(位于第一页的帖子) begin/
$url = 'http://bbs.war3.cn/forumdisplay.php?fid=57';
$code = request($url,'','');
$threadsList = getThreadsList($code);
/
获取帖子列表 end/
//帖子序列
$rows = 0;
/
循环抓取所有帖子源代码 begin/
foreach($threadsList as $list){
$url = "http://bbs.war3.cn/viewthread.php?tid=$list";
if(isExits($code)){
$code = request($url,'');
$color = $rows%2==0?'#00CCFF':'#FFFF33';
echo " ";
echo "

第",($rows+1),"贴:


";
$author = getAuthor($code);
printAuthor($author);
$title = getTitle($code);
printTitle($title);
$contents = getContents($code);
printContents($contents);
echo " ";
$rows++;
}
else
printError();
echo "-----------------------------------------------------------------------------------------

";
}
/
抓取源代码 end*/
?>

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读