第一次用php實現模擬登陸真的是弄了好久,還挺好玩的就是,都是自己一點一點探索的收穫還是慢慢的。到現在還有一點沒弄清楚的就是為什麼不用提交驗證碼資訊也能登陸,感覺可能是bug吧!
想要實現模擬登陸,首先要打開瀏覽器登入你想要模擬登陸的網站然後按F12去找到模擬登陸要提交的數據,像正方還有個隱藏的__VIEWSTATE的變數需要用正則表達式匹配找到這個變數的值,登陸進去了你就會在頁面發現你的個人資訊並在程式碼中註意保存你的cookie以便於跳到另一個想要查詢的頁面,我的程式碼就是查詢成績的方法,有興趣的可以與我交流一起探討!
<span style="font-size:14px;"><?php $url = "http://jw.jxust.edu.cn"; $username = ''; //设置自己的账号 $password = ''; // 设置自己的密码 $ch1 = curl_init(); curl_setopt($ch1, CURLOPT_URL, $url); curl_setopt($ch1, CURLOPT_RETURNTRANSFER, 1); $data = curl_exec($ch1); curl_close($ch1); $pattern = '/<input type="hidden" name="__VIEWSTATE" value="(.*)"/'; //正则表达式匹配__VIEWSTATE preg_match_all($pattern, $data, $matches); $result = $matches[1][0]; //print_r($result); $post1 = array( //必要的提交信息 '__VIEWSTATE' => $result, 'txtUserName' => $username, 'TextBox2' => $password, 'RadioButtonList1' => iconv('utf-8', 'gb2312', '学生'), 'Button1' => '' ); $filecookie = dirname(__FILE__)."/cookie"; $ch2 = curl_init(); curl_setopt($ch2, CURLOPT_URL, $url); curl_setopt($ch2, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch2, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch2, CURLOPT_POST, 1); curl_setopt($ch2, CURLOPT_POSTFIELDS, http_build_query($post1)); curl_setopt($ch2, CURLOPT_COOKIEJAR, $filecookie); //保存登陆的cookie信息到filecookie文件中 curl_exec($ch2); curl_close($ch2); //模拟登录成绩页面获取__VIEWSTATE $ch3 = curl_init(); curl_setopt($ch3, CURLOPT_URL, "http://jw.jxust.edu.cn/xscj_gc.aspx?xh=$username&gnmkdm=N121605"); curl_setopt($ch3, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch3, CURLOPT_COOKIEFILE, $filecookie); curl_setopt($ch3, CURLOPT_REFERER, "http://jw.jxust.edu.cn"); $data = curl_exec($ch3); curl_close($ch3); $pattern = '/<input type="hidden" name="__VIEWSTATE" value="(.*)"/'; /* 又要获取__VIEWSTATE, 注意每个模块的的__VIEWSTATE都不一样 */ preg_match_all($pattern, $data, $matches); $cj__VIEWSTATE = $matches[1][0]; //模拟登陆获取成绩信息 $ch4 = curl_init(); curl_setopt($ch4, CURLOPT_URL, "http://jw.jxust.edu.cn/xscj_gc.aspx?xh=$username&gnmkdm=N121605"); $post2 = array( //提交要查找的信息的数据 '__VIEWSTATE' => $cj__VIEWSTATE, 'ddlXN' => '', 'ddlXQ' => '', 'Button1' => iconv('utf-8', 'gb2312', '按学期查询') ); curl_setopt($ch4, CURLOPT_RETURNTRANSFER, 0); curl_setopt($ch4, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch4, CURLOPT_COOKIEFILE, $filecookie); curl_setopt($ch4, CURLOPT_POST, 1); curl_setopt($ch4, CURLOPT_POSTFIELDS, $post2); curl_setopt($ch4, CURLOPT_REFERER, "http://jw.jxust.edu.cn"); $data = curl_exec($ch4); //preg_match_all($pattern, $data, $matches); curl_close($ch4); ?></span>
以上就介紹了用php實現正方教務系統的模擬登陸,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。