PHP-权限控制类


  1. <?php
  2. /**
  3. * 权限控制类
  4. */
  5. classinclude_purview
  6. {
  7. /**
  8. * 类的唯一实例
  9. */
  10. privatestatic$instance;
  11. /**
  12. * 权限常量
  13. */
  14. constSELECT = 0x1;//查询
  15. constCREATE = 0x2;//添加
  16. constEDIT = 0x4;//修改
  17. constDELETE= 0x8;//删除
  18. /**
  19. * 角色
  20. */
  21. private$annoy='';//匿名用户
  22. private$user ='';//注册用户
  23. private$admin='';//管理用户
  24. private$usertype='annoy';
  25. private$hashtable=array(1=>'查询',2=>'添加',4=>'修改',8=>'删除');
  26. /**
  27. *
  28. */
  29. publicfunction__set($name,$value)
  30. {
  31. if($name=='usertype')
  32. {
  33. if($value!='')
  34. {
  35. $this->usertype =$value;
  36. }
  37. }
  38. }
  39. /**
  40. * 构造函数 给角色赋予权限
  41. */
  42. privatefunction__construct()
  43. {
  44. $this->annoy = self::SELECT;
  45. $this->user = self::SELECT | self::CREATE;
  46. $this->admin = self::SELECT | self::CREATE | self::EDIT | self::DELETE;
  47. }
  48. /**
  49. * 获取类的唯一实例
  50. */
  51. publicstaticfunctiongetInstance()
  52. {
  53. if(self::$instance=== null){
  54. self::$instance=newinclude_purview();
  55. }
  56. returnself::$instance;
  57. }
  58. /**
  59. * 检查权限
  60. *
  61. * @param $usertype 角色
  62. * @param $purview 权限
  63. */
  64. publicfunctioncheck($purview)
  65. {
  66. if($this->{$this->usertype} &$purview)
  67. {
  68. returntrue;
  69. }
  70. returnfalse;
  71. }
  72. /**
  73. * 给角色加权限
  74. */
  75. publicfunctionaddPur($purview)
  76. {
  77. $this->{$this->usertype} |=$purview;
  78. }
  79. /**
  80. * 给角色减权限
  81. */
  82. publicfunctiondelPur($purview)
  83. {
  84. $this->{$this->usertype} ^=$purview;
  85. }
  86. /**
  87. * 返回角色拥有的权限
  88. */
  89. publicfunctiongetPur()
  90. {
  91. $arr=array();
  92. foreach($this->hashtableas$k=>$v)
  93. {
  94. if($k&$this->{$this->usertype})
  95. {
  96. $arr[] =$v;
  97. }
  98. }
  99. return$arr;
  100. }
  101. }

调用示例

PHP代码
  1. /**
  2. * 示例
  3. */
  4. //在session中读用户组
  5. @session_start();
  6. $_SESSION['role'] ='user';
  7. //获取权限类的实例
  8. $pruview= include_purview::getInstance();
  9. //设置角色
  10. $pruview->usertype =$_SESSION['role'];
  11. //获取该角色拥有的权限
  12. $arr=$pruview->getpur();
  13. echo'该用户的权限有:'.join(',',$arr)."\n";
  14. //判断执行的操作是否有权限
  15. if(true ===$pruview->check(include_purview::CREATE ))
  16. {
  17. create();//要执行的操作
  18. }
  19. else
  20. {
  21. exit('您没有权限!');
  22. }
  23. //去掉用户的添加权限
  24. $pruview->delPur(include_purview::CREATE );
  25. $arr=$pruview->getpur();
  26. echo'该用户的权限有:'.join(',',$arr)."\n";
  27. //执行添加操作
  28. if(true ===$pruview->check(include_purview::CREATE ))
  29. {
  30. create();//要执行的操作
  31. }
  32. else
  33. {
  34. echo'您没有权限!'."\n";
  35. }
  36. //加上用户的添加权限
  37. $pruview->addPur(include_purview::CREATE );
  38. $arr=$pruview->getpur();
  39. echo'该用户的权限有:'.join(',',$arr)."\n";
  40. //执行添加操作
  41. if(true ===$pruview->check(include_purview::CREATE ))
  42. {
  43. create();//要执行的操作
  44. }
  45. else
  46. {
  47. exit('您没有权限!');
  48. }
  49. //具体的操作
  50. functioncreate()
  51. {
  52. echo'执行了添加操作'."\n";
  53. }

你可能感兴趣的:(权限控制)