Discuz同步登录与退出功能的核心代码如下:
1. 登录函数
function connect($username, $password) { $url = 'https://xxx.com/member.php?mod=logging&action=login&loginsubmit=yes&cookietime=2592000'; $post_data = array( 'fastloginfield' => 'username', 'username' => $username, 'password' => $password, 'questionid' => 0, 'answer' => '' ); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data); $output = curl_exec($ch); $info = curl_getinfo($ch); curl_close($ch); if($info['http_code'] == 200 && strpos($output, '登录成功') !== false) { return true; } else { return false; } }
2. 退出函数
function disconnect() { $url = 'https://xxx.com/member.php?mod=logging&action=logout&formhash='.FORMHASH; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($ch); $info = curl_getinfo($ch); curl_close($ch); if($info['http_code'] == 200 && strpos($output, '退出成功') !== false) { return true; } else { return false; } }
3. FORMHASH获取
function getFormhash() { $url = 'https://xxx.com/'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($ch); $formhash = ''; if(preg_match('/<input type="hidden" name="formhash" value="(.*?)" \/>/', $output, $match)) { $formhash = $match[1]; } curl_close($ch); return $formhash; }
以上代码实现了通过CURL模拟登录与退出Discuz的功能,getFormhash()函数用于获取Discuz全局FORMHASH,用于退出时的参数。
© 版权声明
本文刊载的所有内容,包括文字、图片、音频、视频、软件、程序、以及网页版式设计等部门来源于互联网,版权均归原作者所有!本网站提供的内容服务于个人学习、研究或欣赏,以及其他非商业性或非盈利性用途,但同时应遵守著作权法及其他相关法律的规定,不得侵犯本网站及相关权利人的合法权利。
联系信息:邮箱aoxolcom@163.com或见网站底部。
联系信息:邮箱aoxolcom@163.com或见网站底部。
THE END
请登录后发表评论
注册
社交帐号登录