分享框架式网站系统的权限处理,尤其针对大型项目和二次开发项目,该如何处理
分享框架式网站系统的权限处理,尤其针对大型项目和二次开发项目
user表就是用户表了,可以存储上万条的用户也没关系,后面的groupid 为1 就是管理员权限,为2就是游客权限
model表存储框架的各个方法名,后面的group是set集合类型,代表哪个组拥有这个权限
废话不多说,看例子代码
- PHP code
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --><?php class IndexAction extends YouYaX { public function index() { header("Content-type: text/html; charset=utf-8"); //登陆的步骤省略 $user="我是游客"; //$user="我是管理员"; $data=$this->find("user","string","user='".$user."'"); $group_tmp=$data["groupid"]; $this->show($group_tmp); } public function show($group_tmp){ $list=$this->find("model","string","func='show'"); $sql="select * from model where func='show' and find_in_set(".$group_tmp.",".$list['group'].")"; if(mysql_num_rows(mysql_query($sql))){ echo "权限通过"; //处理下面的内容 }else{ echo "没有权限"; } } public function showAll($group_tmp){ $list=$this->find("model","string","func='showAll'"); $sql="select * from model where func='showAll' and find_in_set(".$group_tmp.",".$list['group'].")"; if(mysql_num_rows(mysql_query($sql))){ echo "权限通过"; //处理下面的内容 }else{ echo "没有权限"; } } } ?>
欢迎参考。。。
------解决方案--------------------
model表需要加上model名,不然无法区分不同model的同名方法

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this fast-paced era, OPPO Find X7 can use its imaging power to let us savor every beautiful moment in life. Whether it's magnificent mountains, rivers, lakes, or seas, warm family gatherings, or encounters and surprises on the street, it can help you record them with "unparalleled" picture quality. From the outside, the camera Deco design of Find It looks very recognizable and has a high-end feel. The inside is also unique, starting with the basic hardware configuration. FindX7 maintains the previous

After problems occurred in many centralized exchanges, more and more cryptocurrency investors began to transfer assets to cold wallets to reduce the risks posed by centralized exchanges. This article will introduce Trezor, the world's earliest cold wallet provider. Since the first cold wallet was launched in 2014, it has been sold in many countries around the world. Trezor's products include Model One launched in 2014 and the advanced version Model T launched in 2018. The following will continue to introduce the differences between these two products and other cold wallets. What is Trezor cold wallet? In 2014, Trezor launched the first cold wallet ModelOne. In addition to common BTC, ETH, USDT and other currencies, the wallet also supports more than 1,000 other currencies.

On August 22, a digital blogger revealed some core configuration information of OPPO Find X8 Ultra. According to the exposed content, this high-end model will be equipped with Qualcomm’s latest Snapdragon 8Gen4 mobile platform, equipped with a 6000mAh ultra-large capacity battery, and supports 100W wired fast charging and 50W wireless fast charging functions. Appearance design There is currently no specific design information about OPPO Find X8 Ultra. But the real picture of the standard version of OPPO Find X8 has been exposed on the Internet. Appearance of FindX8 Judging from the exposed photos, the rear camera module of OPPO FindX8 adopts a square design with a certain degree of curvature at the four corners, giving a more rounded feeling. In addition, the machine adopts a direct

What are the string search and replace techniques in Python? (Specific code example) In Python, strings are a common data type, and we often encounter string search and replace operations in daily programming. This article will introduce some common string search and replacement techniques, accompanied by specific code examples. To find a specific substring in a string, you can use the find() method or index() method of the string. The find() method returns the index of the first occurrence of the substring in the string.

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

In Docker, the permission problem of the mounting directory can usually be solved by the following method: adding permission-related options when using the -v parameter to specify the mounting directory. You can specify the permissions of the mounted directory by adding: ro or :rw after the mounted directory, indicating read-only and read-write permissions respectively. For example: dockerrun-v/host/path:/container/path:roimage_name Define the USER directive in the Dockerfile to specify the user running in the container to ensure that operations inside the container comply with permission requirements. For example: FROMimage_name#CreateanewuserRUNuseradd-ms/bin/

During the traditional summer vacation "machine shortage", chat sites began to intensively break the news. On August 13, they successively released the OPPO Find Materials), Xiaomi 15Ultra (200 million pixel telephoto and shape) and several other revelations. We save + summarize the news about this batch of models: OPPO Find X8 and related products OPPO Find X8 and X8 Pro are expected to be released in November, while Find X8 Ultra will be released in the first quarter of 25. Dimensity 9400 processor FindX8 is close to a 6.6-inch domestic 1.5K direct screen, high-end and super

Django is an open source Python web framework. It adopts the MVT (Model-View-Template) architectural pattern and divides the application into three parts: Model, View and Template. Among them, Model is a basic component in the Django framework, used to define and manage data. This article will provide a detailed explanation of Model in the Django framework. What is Model in Django
