Home > Article > Backend Development > Use PHP to implement QQ hang-up program_PHP tutorial
QQ hang-up is very popular nowadays. Recently I saw an expert wrote this piece of PHP code to implement QQ hang-up, so I would like to share it with you.
PHP code:
$qq = "100000"; //qq number
$pwd = "123456"; //Password
$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); //This line is to set whether curl follows the location sent by the header,
Important
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") ? "Login failed" : "Login successful";
?>
Note: 1. Curl module support is required. 2. After logging in, your friends will see that you are online. 3. I don’t know how to log out.
The implementation of other languages is similar, and interested friends can develop it themselves.