萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> php實現模擬登陸方正教務系統抓取課表

php實現模擬登陸方正教務系統抓取課表

   這篇文章主要介紹了php實現模擬登陸方正教務系統抓取課表的相關資料,需要的朋友可以參考下

  課程格子和超級課程表這兩個應用,想必大學生都很熟悉,使用自己的學號和教務系統的密碼,就可以將自己的課表導入,隨時隨地都可以在手機上查看。

  其實稍微了解一點php的話,我們也可以做一個類似這樣的web 應用。

  1,解決掉驗證碼

  其實這是正方的一個小bug,當我們進入登陸界面時,浏覽器會去請求服務器,服務器會生成一個驗證碼圖片。如果我們不去請求這個圖片,那麼正方後台也不會生成相應的 驗證碼,於是這樣我們就有了可乘之機,讓我高興會兒~這時,我們在不填寫驗證碼的情況下,可以很流暢的進入。大家可以在自己的電腦上禁止訪問驗證碼的地址,然後試試這 是不是真的~當然,這只對正方有效。

  2,php 的curl 模擬登陸

  接下來就是相關代碼了,相信很多人和我一樣,只喜歡看例子,對於長篇大論的講解,轉頭就走……不過這個習慣還是不好……廢話不多說!

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 //模擬登陸 function curl_request($url,$post='',$cookie='', $returnCookie=0){ $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)'); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($curl, CURLOPT_AUTOREFERER, 1); curl_setopt($curl, CURLOPT_REFERER, "這裡一定要換成教務系統登陸的url"); //填寫教務系統url if($post) { curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($post)); } if($cookie) { curl_setopt($curl, CURLOPT_COOKIE, $cookie); } curl_setopt($curl, CURLOPT_HEADER, $returnCookie); curl_setopt($curl, CURLOPT_TIMEOUT, 20); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); $data = curl_exec($curl); if (curl_errno($curl)) { return curl_error($curl); } curl_close($curl); if($returnCookie){ list($header, $body) = explode("rnrn", $data, 2); preg_match_all("/Set-Cookie:([^;]*);/", $header, $matches); $info['cookie'] = substr($matches[1][0], 1); $info['content'] = $body; return $info; }else{ return $data; } }

  3,教務系統登陸頁面的隱藏字段

  舉個栗子

  復制代碼 代碼如下:

  這些東西在登陸的時候也是需要帶上的,順便貼出函數,順便暴漏了博主的學校……皇家種地大學(主要是正則表達式的運用)

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 //登陸頁面的隱藏字段     function getView(){ $url = 'http://jw.hzau.edu.cn/default2.aspx'; $result = curl_request($url); $pattern = '/<input type="hidden" name="__VIEWSTATE" value="(.*?)" />/is'; preg_match_all($pattern, $result, $matches); $res[0] = $matches[1][0];   return $res[0] ; }   //返回教室查詢頁面的隱藏值   private function getViewJs($cookie,$xh){     $url = "http://jw.hzau.edu.cn/xxjsjy.aspx?xh={$xh}";     $result = curl_request($url,'',$cookie);     $pattern = '/<input type="hidden" name="__VIEWSTATE" value="(.*?)" />/is';     preg_match_all($pattern, $result, $matches);     $res[0] = $matches[1][0];     return $res[0] ;   }

  4,cookie 的獲取

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 function login($xh,$pwd){ $url = 'http://jw.hzau.edu.cn/default2.aspx'; $post['__VIEWSTATE'] = $this->getView(); $post['txtUserName'] = $xh; //填寫學號 $post['TextBox2'] = $pwd; //填寫密碼 $post['txtSecretCode'] = ''; $post['lbLanguage'] = ''; $post['hidPdrs'] = ''; $post['hidsc'] = ''; $post['RadioButtonList1'] = iconv('utf-8', 'gb2312', '學生'); $post['Button1'] = iconv('utf-8', 'gb2312', '登錄'); $result = curl_request($url,$post,'', 1); return $result['cookie']; }

  5,讓我們來試試查課表的功能,格式有點亂額,大家湊合著看,我把課表轉成了一個二維關聯數組

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 //返回課表字符串
copyright © 萬盛學電腦網 all rights reserved