实例如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<li>
<label>权限</label>
<cite>
<input name= "MB_right" type= "radio" value= "1" checked= "checked" >超级管理员
<input name= "MB_right" type= "radio" value= "0" >普通管理员
</cite>
</li>
//权限判定
if ( $_SESSION [ 'adminqx' ]<> '1' ){
if ( $czmc <> 'main' && $czmc <> 'df1' && $czmc <> 'top' && $czmc <> 'left' && $czmc <> 'userlist' && $czmc <> 'team' && $czmc <> 'rggl' && $czmc <> 'getTreeso' && $czmc <> 'getTree' && $czmc <> 'get_childs' && $czmc <> 'getTreeInfo' && $czmc <> 'getTreeBaseInfo' && $czmc <> 'userbtc' && $czmc <> 'jbzs' ){
$this ->error( '您暂无权限操作!' , '/laike.php/Home/Index/df1' ); die ;
}
}
|
以上这篇thinkphp关于简单的权限判定方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。