Home > Article > Backend Development > ThinkPHP (RBAC) permission management videos and materials (source code, courseware) sharing
RBAC is one of the most common rights management technologies in commercial systems. RBAC is an idea that can be implemented in any programming language. Its mature and simple control idea is increasingly popular among developers. "ThinkPHP (RBAC) Rights Management Video Tutorial" will introduce the basic knowledge, principles and complete implementation process of RBAC in detail through the theoretical part and practical part, and demonstrate the application scenarios of RBAC.
Course playback address: http://www.php.cn/course/497.html
This video was created by teacher Lyc from Xuehu. The teacher’s teaching style is:
The teacher’s lectures are simple and easy to understand, well organized, analyzed layer by layer, interlocking, and rigorously demonstrated. The structure is rigorous, using the logical power of thinking to attract students' attention, and using reason to control the classroom teaching process. By listening to the teacher's lectures, students not only learn knowledge, but also receive training in thinking, and are also influenced and infected by the teacher's rigorous academic attitude
The more difficult point in this video is Role management configuration permissions:
##In the actual production user process, Roles are widely used, so what exactly are roles? A role is a set of permissions that can be authorized to users or roles to control users' access to and behavior of objects. When creating a user, do you directly authorize the DBA role to it for the sake of convenience? In fact, this is a very risky behavior. You can think about two questions below: 1. What permissions does the connect and resource roles contain? 2. How to query what roles a user has?connect, what permissions does the resource role include? Can be queried through the DBA_SYS_PRIVES view
Here we also recommend downloading the information:http ://www.php.cn/xiazai/learn/2104
In the information, we share with you the ThinkPHP (RBAC) permission management system video tutorial coursewareThe above is the detailed content of ThinkPHP (RBAC) permission management videos and materials (source code, courseware) sharing. For more information, please follow other related articles on the PHP Chinese website!