如何设置Yii :: app() – > user-> name

前端之家收集整理的这篇文章主要介绍了如何设置Yii :: app() – > user-> name前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试过了
public function getName()
{
    return 'TEST';
}

在UserIdentity.PHP但它似乎没有改变Yii :: app() – > user-> name的值

在您定义的UserIdentity类中,您需要使用setState(name,value)方法设置新状态.

例如,在方法中验证用户是否良好:

//if the user is good (good login and good password)
$this->_id=$record->id;
$this->setState('name',$record->name);
$this->errorCode=self::ERROR_NONE;

然后,您将能够调用Yii :: app() – > user-> name

> A complete example in the Yii guide
> The setState() documentation

原文链接:https://www.f2er.com/php/131016.html

猜你在找的PHP相关文章