PHP simulates QQ login. The principle is to use curl to simulate post login, and the cookie is saved locally.
Here the code theory can support permanent single-stick QQ
'Http: // pt.3g.qq.com/s? Sid = ATAll43N7ZULRQ5V8zdfojol & aid = nLogin ', 'Q _ from' => '', 'logintitle' => 'login', 'bid' => '0 ', 'QQ' => $ qqno, 'pwd' => $ qqpw, 'logintype' => '1', 'loginsubmit '=> 'login ',); $ curl = curl_init ('http: // pt.3g.qq.com/handleLogin? Aid = nLoginHandle & sid = comment '); curl_setopt ($ curl, CURLOPT_HEADER, 0); curl_setopt ($ curl, expires, 1); curl_setopt ($ curl, CURLOPT_COOKIEJAR, $ cookie );//? Cookiecurl_setopt ($ curl, CURLOPT_POST, 1); curl_setopt ($ curl, CURLOPT_POSTFIELDS, http_build_query ($ post); $ result = curl_exec ($ curl ); curl_close ($ curl);?>
The above is the PHP simulated QQ login content. For more information, please follow the PHP Chinese network (www.php1.cn )!