- 论坛徽章:
- 1
|
本帖最后由 SeriousCool 于 2012-12-24 16:01 编辑
突然发现加精了,把所有代码都帖出来吧,不然太对不起观众了。
本人不是专业的程序员,偶尔写些小程序玩玩,代码很不规范,见笑了。
原文地址:
- <?
- // 登录
- function dz_login($url_login, $username, $password){
- $argv_login = array(
- 'action'=>'login',
- 'loginsubmit'=>'yes',
- 'username'=>$username,
- 'password'=>$password,
- 'cookietime'=>'2592000'
- );
-
- $ch_login = curl_init();
- curl_setopt($ch_login, CURLOPT_URL, $url_login);
- curl_setopt($ch_login, CURLOPT_RETURNTRANSFER, TRUE);
- curl_setopt($ch_login, CURLOPT_POST, TRUE);
- curl_setopt($ch_login, CURLOPT_POSTFIELDS, $argv_login);
- curl_setopt($ch_login, CURLOPT_HEADER, TRUE);
-
- $html_login = curl_exec($ch_login);
- if($html_login === FALSE){
- $error_login = curl_error($ch_login);
- }
-
- preg_match("/Set-Cookie: (.+?);/", $html_login, $harr);
- $cookie = $harr[1];
-
- return $cookie;
- }
-
- // 获得formhash
- function getformhash($cookie){
- global $message, $fid, $tid;
- $html_formhash = post_reply($message, $fid, $tid);
- preg_match("/formhash=(.{8})\"\>/", $html_formhash, $array);
- $formhash = $array['1'];
- return $formhash;
- }
-
- // 发主题
- function post_subject($subject, $message, $fid){
- global $cookie, $url_post, $formhash;
- $argv_post_reply = array(
- 'action'=>'newthread',
- 'fid'=>$fid,
- 'formhash'=>$formhash,
- 'subject'=>$subject,
- 'typeid'=>'1',
- 'message'=>$message,
- 'topicsubmit'=>'yes',
- 'usesig'=>'1'
- );
-
- $ch_post_reply = curl_init();
- curl_setopt($ch_post_reply, CURLOPT_URL, $url_post);
- curl_setopt($ch_post_reply, CURLOPT_RETURNTRANSFER, TRUE);
- curl_setopt($ch_post_reply, CURLOPT_POST, TRUE);
- curl_setopt($ch_post_reply, CURLOPT_POSTFIELDS, $argv_post_reply);
- curl_setopt($ch_post_reply, CURLOPT_HEADER, TRUE);
- curl_setopt($ch_post_reply, CURLOPT_COOKIE, $cookie);
- curl_setopt($ch_post_reply, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)');
- $html_reply = curl_exec($ch_post_reply);
- if($html_reply === FALSE){
- $error_reply = curl_errno($ch_post_reply)
- .curl_error($ch_post_reply);
- return $error_reply;
- }else{
- return $html_reply;
- }
- }
-
- // 发回复
- function post_reply($message, $fid, $tid){
- global $cookie, $url_post, $formhash;
- $argv_post_reply = array(
- 'action'=>'reply',
- 'fid'=>$fid,
- 'tid'=>$tid,
- 'formhash'=>$formhash,
- 'message'=>$message,
- 'replysubmit'=>'yes',
- 'usesig'=>'1'
- );
-
- $ch_post_reply = curl_init();
- curl_setopt($ch_post_reply, CURLOPT_URL, $url_post);
- curl_setopt($ch_post_reply, CURLOPT_RETURNTRANSFER, TRUE);
- curl_setopt($ch_post_reply, CURLOPT_POST, TRUE);
- curl_setopt($ch_post_reply, CURLOPT_POSTFIELDS, $argv_post_reply);
- curl_setopt($ch_post_reply, CURLOPT_HEADER, TRUE);
- curl_setopt($ch_post_reply, CURLOPT_COOKIE, $cookie);
- curl_setopt($ch_post_reply, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)');
- $html_reply = curl_exec($ch_post_reply);
-
- if($html_reply === FALSE){
- $error_reply = curl_errno($ch_post_reply)
- .curl_error($ch_post_reply);
- return $error_reply;
- }else{
- return $html_reply;
- }
- }
- ?>
复制代码 |
|