新建文件

This commit is contained in:
2025-01-06 19:52:30 +08:00
commit 4d2d5e2d5e
32 changed files with 1177 additions and 0 deletions

9
r_2.php Normal file
View File

@ -0,0 +1,9 @@
<?php
include 'acl_list.php';
$role = $_GET['role'] ?? null;
if ($role && checkAccess($role, 'r_2.php')) {
echo "欢迎光临";
} else {
echo "无权访问";
}
?>