I was trying to get user id but I am failing to get and
echo Yii::app()->user->id; or echo Yii::app()->user->getId();
returns the name of user which is wearied. Any idea what is wrong?
|
I was trying to get user id but I am failing to get and echo Yii::app()->user->id; or echo Yii::app()->user->getId(); returns the name of user which is wearied. Any idea what is wrong? |
|||
|
|
|
you should have getId function in user Identity |
|||||
|
|
Yii::app()->user returns a component CWebUser by default. When you want to get some additional information about user, you need to extend this component. Create a file
In your config file find section
if there is no this section , just create it. And change 'class'=> to WebUser'. |
|||||||
|