Search code examples
phpyiiyii2rbac

How to get user role in Yii2?


How to get user role in Yii2?

I searched and read Yii2 guide but I didn't find any solution.


Solution

  • You can get Roles for an user by using getRolesByUser function

    You can use it like this

    \Yii::$app->authManager->getRolesByUser($user_id);