首页 > 开发 > PHP > 正文

用php实现qq挂机

2024-05-04 22:59:13
字体:
来源:转载
供稿:网友

商业源码热门下载www.html.org.cn

现时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、不知道如何下线。
其他语言的实现类似,有兴趣的朋友可以自己动手开发一下。
 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表