📄 attrmap.php3
字号:
<?php#Read ldap attribute mapif (!isset($attrmap)){ $ARR = file("$config[general_ldap_attrmap]"); foreach($ARR as $val){ $val=chop($val); if (ereg('^[[:space:]]*#',$val) || ereg('^[[:space:]]*$',$val)) continue; list(,$key,$v,$g)=split('[[:space:]]+',$val); $v = strtolower($v); $attrmap["$key"]=$v; $attrmap[generic]["$key"]=$g; } $ARR = file("$config[general_extra_ldap_attrmap]"); foreach($ARR as $val){ $val=chop($val); if (ereg('^[[:space:]]*#',$val) || ereg('^[[:space:]]*$',$val)) continue; list(,$key,$v,$g)=split('[[:space:]]+',$val); $v = strtolower($v); $attrmap["$key"]=$v; $attrmap[generic]["$key"]=$g; } if ($config[general_use_session] == 'yes') session_register('attrmap');}?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -