首页 > 作文

简单的权限管理php

更新时间:2023-04-07 22:04:26 阅读: 评论:0

转发自/d/file/titlepic/6604867.html style="text-decoration: underline">首先,要明白的基础理论是用户,角色,权限之间的关系是一对多,还是多对多。据此来建立表。

一个用户可以属于多个角色,比如邓超。他是孙俪的丈夫,同时是他小孩的父亲,还是他老爸的儿子。那么这里他一共有丈夫,父亲,儿子3个角色。

一个角色可以有多个用户。比如学生(角色),张三,李四,王五等。

所以用户跟角色是多对多的关系。

一个角色可以多个权限。比如把文章模块分为查看,修改,添加,删除这4个权限。普通用户只有查看的权限,但管理员他可以同时有这4个权限。

一个权限也可以被多个角色同时拥有。普通用户和管理员都有查看权限。

所以权限跟角色也是多对多的关系。

下面开始建表

第一张用户表

第二张角色表

第三张权限表

接下来是2张中间表。

用户-角色表(要设置多对多的外键关联关系)

最后一张角色-权限表(设置多对多的关联关系)

接下来是代码

第一个guanli.php,用到ajax等jquery语法,要引用jquery文感受你的伤件。这个页面是修改用户的角色权限

<?phperror_reporting(e_all ^ e_deprecated);        include("db.class.php");        $sql = "lect * from qx_ur";        $arr =公元纪年法的来历 $dao->getall($sql);        // var_dump($arr);        // exit;        $sql = "lect * from qx_jue";        $arr2 = $dao->getall($sql);        foreach($arr as $v){            // var_dump($v);            // exit;        }        ?><!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; chart=utf-8" /><title>无标题文档</title>        <script src="asts/js/jquery-1.8.2.min.js"></script><!-- <script src="../../dist/js/jquery-1.11.2.min.js"></script> --></head><body><h1>用户与角色管理</h1><div>请选择用户:    <lect id="ur">        <?php foreach($arr as $v){        //     var_dump($v);        // exit;         ?>            <option value="<?php echo"$v[id]" ?>"> <?php echo "$v[urname]";?></option>        <?php } ?>    </lect></div><br /><div>请选择角色:<?php foreach($arr2 as $v2){ ?><input type='checkbox' value="<?php echo"$v2[id]" ?>" class='ck' /><?php echo "$v2[jue_name]" ?>        <?php } ?></div><br /><input type="button" value="确定" id="btn" /></body><script type="text/javascript">$(document).ready(function(e) {    //选中默认角色    xuan();    //当用户选中变化的时候,去选中相应角色    $("#ur").change(function(){            xuan();        })    //点击确定保存角色信息    $("#btn").click(function(){            var uid = $("#ur").val();            var jue = "";            var ck = $(".ck");            for(var i=0;i<ck.length;i++)            {                if(ck.eq(i).prop("checked"))                {                    jue += ck.eq(i).val()+"|";                }            }            jue = jue.substr(0,jue.length-1);            $.ajax({                    url:"chuli.php",                    data:{uid:uid,jue:jue,type:1},                    type:"post",                    datatype:"text",                    success: function(data){                            alert("保存成功!");                        }                });        })});//选中默认角色function xuan(){    var uid = $("#ur").val();    $.ajax({        url:"chuli.php",        data:{uid:uid,type:0},义务教育均衡发展        type:"post",        datatype:"text",        success: function(data){                // var jue = data.trim().split("|");                // var ck = $(".ck");                // ck.prop("checked",fal);                // for(var i=0;i<ck.length;i++)                // {                //     if(jue.indexof(ck.eq(i).val())>=0)                //     {                //         ck.eq(i).prop("checked",true);                //     }                // }                // console.log(data);                var obj = eval('(' + data + ')');                console.log(obj);                var str="";                for(var i=0;i<obj.length;i++){                    str+=" ";                    str+=obj[i].jue_id;                }                str=$.trim(str)                console.log($.trim(str));                var ck = $(".ck");                ck.prop("checked",fal);                for(var i=0;i<ck.length;i++)                {                    if(str.indexof(ck.eq(i).val())>=0)                    {                        ck.eq(i).prop("checked",true);                    }                }                            }        });}</script></html>

第二个登录页面login.php

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; chart=utf-8" /><title>无标题文档</title></head><body><h1>登录页面</h1><form action="logincl.php" method="post"><input type="text" name="urname" /><input type="password" name="pwd" /><input type="submit" value="登录" /></form></body></html>

第三个页面处理登录页面logincl.php

<?phpheader('content-type: text/html; chart=utf-8');ssion_start();include("db.class.php");$urname = $_post["urname"];$pwd = $_post["pwd"];  // $uid=$_post["uid"];// $sql="lect pwd from qx_ur where uid='{$uid}'";// $mm = $dao->getone($sql); // if($mm==$pwd && !empty($pwd))// {//     $_ssion["uid"]=$uid;//     header("location:main.php");// }$urname = $_post['urname'];  // 获取post传过来的密码   $password = $_post['pwd'];  $sql = "lect * from qx_ur where urname = '$urname' and pwd = '$pwd' "; $res = $dao->getrow($sql);       if($res){//如果存在,跳回本页面        $_ssion['urname'] = $urname;        $_ssion["uid"]=$res["id"];          echo '<script language="javascript">;          alert("登录成功");location.href="main.php";</script>;';                    exit;              }el{//如果不存在                echo '<script language="javascript">;          alert("登录失败");</script>;';                //注册成功之后跳转到指定页面        echo "<script>location.href='#'</script>";     }

第4个页面查看权限main.php,输出登录的用户的所有权限u1和u2对比

第二次登录u2

<?php  ssion_start(); ?><!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; chart=utf-8" /><title>无保先教育标题文档</title></head><body><h1>当前用户:<?php echo "$_ssion[urname]";?></h1><?phperror_reporting(e_all ^ e_deprecated);// ssion_start();include("db.class.php");if(empty($_ssion["uid"])){    header("location:qx_login.php");    exit;}//登录者用户名$uid = $_ssion["uid"];//根据用户名查角色$sjs = "lect jue_id from qx_ur_jue where ur_id='{$uid}'";$ajs = $dao->getall($sjs);// var_dump($ajs);// exit;//定义一个存放功能代号的数组$arr = array();//根据角色代号查功能代号foreach($ajs as $vjs){        $jsid = $vjs['jue_id']; //角色代号        $sgn = "lect quanxian_id from qx_js_qx where jue_id='{$jsid}'";        $strgn = $dao->getall($sgn);        // $agn = explode("|",$strgn);        // var_dump($strgn);        // echo "xxx";        // exit;        foreach($strgn as $vgn)        {                        array_push($arr,$vgn['quanxian_id']);                    }    }//去重,显示// var_dump($arr);//         exit;$arr = array_unique($arr);// var_dump($arr);//         exit;foreach($arr as $v){    $sql = "lect * from qx_quanxian where id='{$v}'";    $attr = $dao->getrow($sql);             // var_dump($attr);     //     exit;     // echo "{$attr['id']},{$attr['qx_name']}";     echo "<div code='{$attr["id"]}'>{$attr["qx_name"]}</div>";    // <input type='checkbox' value="$attr[id]" class='ck' />        }?></body></html>

第5个工具类代码db.class.php,在构造函数__construct()中修改默认的配置参数,数据库名,用户名,密码等。否则会连接数据库失败。

<?php// namespace frame\libs;class db{    //主机地址    var $host;    //用户名    var $urname;    //密码    var $password;    //数据库名    var $dbname;    //字符集    var $chart;    //数据库连接对象,主要用在mysql_query($sql,$this->con);    private $con;    //外界获取的mysqldb类操作对象    public static $dao;    //获得mysqldb类对象(单例)    public static function getinstance($config){        if(!ist(lf::$dao)){            lf::$dao = new lf($config);        }        return lf::$dao;    }     //private禁止外部new,减少new带来的开销,并设置默认的配置。    private function __construct($config){        $this->host = ist($config['host'])?$config['host']:'localhost';        $this->port = ist($config['port'])?$config['port']:'3306';        $this->urname = ist($config['urname'])?$config['urname']:'root';        $this->password = ist($config['password'])?$config['password']:'root';        $this->dbname = ist($config['dbname'])?$config['dbname']:'bishe';        $this->chart = ist($config['chart'])?$config['chart图穷匕见的主人公']:'utf8';        //连接数据库        $this->con = $this->connect();        //设置数据库名,默认为test        $this->udb($this->dbname);        //设置字符集,默认为utf8。         $this->tchart($this->chart);    }    //禁止外部克隆    private function __clone(){    }    //连接不成功在这个分段找。    //////////////////////////////////////////////////////    //连接数据库    public function connect(){         $con =         mysql_connect("$this->host:$this->port","$this->urname","$this->password") or die("连接数据库失败");        return $con;    }    //1.执行增、删、改sql语句     public function exec($sql){        $res = mysql_query($sql,$this->con);        if($res){             // echo "<br/>sql语句:".$sql."<br>";             // var_dump($res);             return true;                         //要是增删改有问题可以在这里输出sql调试。        }el{            echo "<br/>sql语句:".$sql;            echo "<br/出错信息>:".mysql_error();            echo "<br/出错代码>:".mysql_errno();            exit;        }    }    //额外设置字符集    public function tchart($chart){        $sql = "t names '$chart'";        $this->exec($sql) or die("t");        //die();    }    //额外设置数据库    public function udb($dbname){        $sql = "u $dbname";        $this->exec($sql) or die("u");//or die()函数前面需返回对应的true或fal;    }    ////////////////////////////////////////////////////////    //查找出错在这个部分找。    //4.将查到的结果集转为单个数据,这里是索引数组的第一个字段。    public function getone($sql){        $rec = mysql_query($sql,$this->con);        $res = mysql_fetch_row($rec);        if($res){            return $res[0];        }el{            return fal;        }    }    //可能修改的函数全部放在上面,以便查找。下方函数基本不会修改。    //编号1~4是高频率使用的函数。    //2.获取一行数据(一维)    public function getrow($sql){        $rec = mysql_query($sql,$this->con);        $res = mysql_fetch_assoc($rec);        if($res){            return $res;        }el{            return fal;        }    }    //3.获取所有数据(二维)    public function getall($sql){        $rec = mysql_query($sql,$this->con);        $arr = array();//定义 一个数组        while($res = mysql_fetch_assoc($rec)){            $arr[] = $res;        }        if($arr){            return $arr;        }el{            return fal;        }    }}$dao = db::getinstance(null);?>

第6个chuli.php.这个页面是用来处理guanli.php发过来的ajax请求。

<?phperror_reporting(e_all ^ e_deprecated);include("db.class.php");$type = $_post["type"];switch($type){    ca 0:        $uid = $_post["uid"];        $sql = "lect jue_id from qx_ur_jue where ur_id='{$uid}'";        $data = $dao->getall($sql);        // $id_list="xx";        // foreach($data as $v)        // {                    //     $id_list =","+"$v[jue_id]";        //     echo json_encode($id_list);        //     exit;        // }            // echo json_encode($data);        echo json_encode($data);        break;    ca 1:        $uid = $_post["uid"];        $jue = $_post["jue"];        $sdel = "delete from qx_ur_jue where ur_id='{$uid}'";        $dao->exec($sdel);        $arr = explode("|",$jue);        foreach($arr as $v)        {            // echo $v;            $sql = "inrt into qx_ur_jue values('{$uid}','{$v}')";            $dao->exec($sql);        }        echo "ok";        break;}
总结

难点是guanli页面的ajax请求。

js解析二维数组

(完)

本文发布于:2023-04-07 22:04:20,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/b588839b69898d456a5642c296d90acc.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:简单的权限管理php.doc

本文 PDF 下载地址:简单的权限管理php.pdf

下一篇:返回列表
标签:角色   权限   用户   页面
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图