判断用户账号与密码、指定密码相同代码
9月前 1037 admin
账号与密码相同:
md5(md5($_user['username']).$_user['salt']) == $_user['password']);​

指定密码与用户密码相同:
md5(md5('xxx').$_user['salt']) == $_user['password'];​


user用户名(邮箱)与密码相同:

md5(strtok(param('email'), "@")) == $password.$salt;
最新回复 (0)
您需要登录后才可以查看或回帖 登录
注册