Yii::app()->user->loginはFALSEを返します。
これはどのように FALSE を返すことができますか?またその理由は?
コード:
public function login()
{
if($this->_identity===null)
{
$this->_identity = new UserIdentity($this->username,$this->password);
$this->_identity->authenticate();
}
if($this->_identity->errorCode===UserIdentity::ERROR_NONE)
{
$duration=$this->rememberMe ? 3600*24*30 : 0; // 30 days
$r2 = Yii::app()->user->login($this->_identity,$duration);
MyLog::log("res r: ".var_export($r2, true));
return true;
}
else
return false;
}
画像コード: http://clip2net.com/s/5fmhNR