現時QQ掛機十分流行,最近看到某位高人寫了這樣一段PHP代碼實現QQ掛機,特拿出來與各位分享一下,PHP代碼:
- <php
- $qq = "100000"; //qq號碼
- $pwd = "123456"; //密碼
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, "http://211.139.167.71/waptest/TWF/qqportal/rela/updateuserinfo.jsp");
- curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); //這行是設定curl是否跟隨header發送的location,
- 重要
- curl_setopt($ch, CURLOPT_POST, 1);
- //curl_setopt($ch, "Connection", "Keep-Alive");
- curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
- curl_setopt($ch, CURLOPT_POSTFIELDS, "qq=".$qq."&pwd=".$pwd."&FromWhere=register");
- $return = curl_exec($ch);
- curl_close($ch);
- echo strstr($return, "postfield") ? "登錄失敗" : "登錄成功";
- ?>
注:1、需curl模塊支持,2、登陸后,你的好友將會看到你在線 3、不知道如何下線,其他語言的實現類似,有愛好的朋友可以自己動手開發一下。
新聞熱點
疑難解答