以下為引用的內(nèi)容: PHP: CODE: [Copy to clipboard] <php $qq = "100000"; //qq號(hào)碼 $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); //這行是設(shè)定curl是否跟隨header發(fā)送的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") ? "登錄失敗" : "登錄成功"; ?> |