search
HomeBackend DevelopmentPHP TutorialUse PHP to develop user role and permission assignment functions in the knowledge question and answer website.

Use PHP to develop the user role and permission allocation function in the knowledge question and answer website

When developing the knowledge question and answer website, in order to manage users and permissions, we can use PHP to develop a role and permission allocation system. In this way, different permissions can be provided for different user roles to ensure system security and data integrity. This article will introduce how to develop this system using PHP and provide sample code.

1. Design the database
First, create the following tables in the MySQL database:

1. User table (user): used to store user information, including user name, password, and role ID and other fields.

CREATE TABLE user (
id int(11) NOT NULL AUTO_INCREMENT,
username varchar(255) NOT NULL ,
password varchar(255) NOT NULL,
role_id int(11) NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

2. Role table (role): used to store role information, including role name and other fields.

CREATE TABLE role (
id int(11) NOT NULL AUTO_INCREMENT,
role_name varchar(255) NOT NULL ,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

3. Permission table (permission): used to store permission information, including permission names fields.

CREATE TABLE permission (
id int(11) NOT NULL AUTO_INCREMENT,
permission_name varchar(255) NOT NULL ,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

4. User role association table (user_role): used to store users and roles Association relationship, establish the association between user table and role table.

CREATE TABLE user_role (
user_id int(11) NOT NULL,
role_id int(11) NOT NULL,
PRIMARY KEY (user_id,role_id),
CONSTRAINT fk_user_role_user FOREIGN KEY (user_id) REFERENCES user (id) ON DELETE CASCADE,
CONSTRAINT fk_user_role_role FOREIGN KEY (role_id) REFERENCES role ( id) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

5. Role permission association table (role_permission): used to store the association between roles and permissions, and establish role tables and Association of permission tables.

CREATE TABLE role_permission (
role_id int(11) NOT NULL,
permission_id int(11) NOT NULL,
PRIMARY KEY (role_id,permission_id),
CONSTRAINT fk_role_permission_role FOREIGN KEY (role_id) REFERENCES role (id) ON DELETE CASCADE,
CONSTRAINT fk_role_permission_permission FOREIGN KEY (permission_id) REFERENCES permission ( id) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

2. Implement the assignment of roles and permissions

  1. Add roles
    In order To implement the assignment of roles and permissions, you first need to create roles. An interface for adding roles is provided in the background of the website. Administrators can enter the role name on this interface and insert the role name into the role table. The following is a simple sample code:

// Connect to the database
$conn = mysqli_connect('localhost', 'root', 'password', 'database ');

// Process form submission
if ($_SERVER['REQUEST_METHOD'] == 'POST') {

// 获取表单输入的角色名
$roleName = $_POST['role_name'];

// 插入角色名到角色表
$sql = "INSERT INTO role (role_name) VALUES ('$roleName')";
mysqli_query($conn, $sql);

// 提示添加成功
echo '角色添加成功!';

}
?>

  1. Add permissions
    Next, the administrator can enter the permission name in the add permission interface provided by the website backend and insert the permission name into the permission table. The following is a simple sample code:

// Connect to the database
$conn = mysqli_connect('localhost', 'root', 'password', 'database ');

// Process form submission
if ($_SERVER['REQUEST_METHOD'] == 'POST') {

// 获取表单输入的权限名
$permissionName = $_POST['permission_name'];

// 插入权限名到权限表
$sql = "INSERT INTO permission (permission_name) VALUES ('$permissionName')";
mysqli_query($conn, $sql);

// 提示添加成功
echo '权限添加成功!';

}
?>

  1. Assign role permissions
    In the process of creating users and user roles, administrators can assign corresponding permissions to each role. The following is a simple sample code:

// Connect to the database
$conn = mysqli_connect('localhost', 'root', 'password', 'database ');

// Process form submission
if ($_SERVER['REQUEST_METHOD'] == 'POST') {

// 获取表单输入的角色ID
$roleId = $_POST['role_id'];

// 获取表单勾选的权限ID
$permissionIds = $_POST['permission_ids'];

// 清空角色权限关联表中与当前角色相关的记录
$sql = "DELETE FROM role_permission WHERE role_id = $roleId";
mysqli_query($conn, $sql);

// 插入新的角色权限关联记录
foreach ($permissionIds as $permissionId) {
  $sql = "INSERT INTO role_permission (role_id, permission_id) VALUES ($roleId, $permissionId)";
  mysqli_query($conn, $sql);
}

// 提示分配成功
echo '角色权限分配成功!';

}
?>

The above code is only an example. In actual development, input verification, error handling, etc. are also required.

3. Implement role permission verification
After completing the assignment of roles and permissions, we can perform access control based on the user's roles and permissions to implement operation restrictions on the knowledge question and answer website for users with different permissions. The following is a simple sample code:

// Connect to the database
$conn = mysqli_connect('localhost', 'root', 'password', 'database');

// 获取当前登录用户的角色ID
$userId = $_SESSION['user_id'];
$sql = "SELECT role_id FROM user WHERE id = $userId";
$result = mysqli_query($conn, $sql);
$row = mysqli_fetch_assoc($result);
$roleId = $row['role_id'];

// 获取当前用户角色所拥有的权限ID集合
$sql = "SELECT permission_id FROM role_permission WHERE role_id = $roleId";
$result = mysqli_query($conn, $sql);
$permissionIds = [];
while ($row = mysqli_fetch_assoc($result)) {

$permissionIds[] = $row['permission_id'];

}

// 检查当前用户是否具有某个权限
function hasPermission($permissionId) {

global $permissionIds;
return in_array($permissionId, $permissionIds);

}
?>

在实际开发中,可以根据具体的权限要求,进一步细分和扩展代码,实现更复杂的权限验证逻辑。

总结:本文介绍了使用PHP开发知识问答网站中的用户角色和权限分配功能,并提供了相应的数据库设计和示例代码。通过合理管理用户角色和权限,可以确保知识问答网站的安全性和数据的完整性,提升用户体验。

The above is the detailed content of Use PHP to develop user role and permission assignment functions in the knowledge question and answer website.. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use