We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我是这样写的 list($uid, $username, $password, $email) = Ucenter::uc_user_login('renzhifan','renzhifan'); echo $email; if($uid > 0) { echo '登录成功'; echo Ucenter::uc_user_synlogin($uid); } elseif($uid == -1) { echo '用户不存在,或者被删除'; } elseif($uid == -2) { echo '密码错'; } else { echo '未定义'; }
list($uid, $username, $password, $email) = Ucenter::uc_user_login('renzhifan','renzhifan'); echo $email; if($uid > 0) { echo '登录成功'; echo Ucenter::uc_user_synlogin($uid); } elseif($uid == -1) { echo '用户不存在,或者被删除'; } elseif($uid == -2) { echo '密码错'; } else { echo '未定义'; }
然后输出是 [email protected]登录成功 但是我去刷新其他应用 还是未登录状态
The text was updated successfully, but these errors were encountered:
No branches or pull requests
我是这样写的
list($uid, $username, $password, $email) = Ucenter::uc_user_login('renzhifan','renzhifan'); echo $email; if($uid > 0) { echo '登录成功'; echo Ucenter::uc_user_synlogin($uid); } elseif($uid == -1) { echo '用户不存在,或者被删除'; } elseif($uid == -2) { echo '密码错'; } else { echo '未定义'; }
然后输出是
[email protected]登录成功
但是我去刷新其他应用 还是未登录状态
The text was updated successfully, but these errors were encountered: