关于 errorCode [ 新手入门 ]
public function authenticate()
{
$username=strtolower($this->username);
$user= User::model()->find('LOWER(username)=?',array($username));
if($user===null)
$this->errorCode=self::ERROR_USERNAME_INVALID;
else if(!$user->validatePassword($this->password))
$this->errorCode=self::ERROR_PASSWORD_INVALID;
else
{
$this->_id=$user->id;
$this->username=$user->username;
$this->errorCode==self::ERROR_NONE;
}
return $this->errorCode==self::ERROR_NONE;
}
里面的
self::ERROR_PASSWORD_INVALID;
self::ERROR_USERNAME_INVALID;
是什么 这样写
errorCode=validatePassword($this->password))
是不是应该返回正确的密码
共 5 条回复
fiaw
注册时间:2011-07-15
最后登录:1970-01-01
在线时长:0小时0分
最后登录:1970-01-01
在线时长:0小时0分
- 粉丝0
- 金钱215
- 威望0
- 积分215