作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用此检查用户是否属于名为 tellers 的组功能。我好像做对了
function isMember($userid,$group){
$privGroups = array('Administrator', 'Super Users'); // Always return true for these
if(is_array($group))$mygroup = $group;
else $mygroup[0]=$group;
$j=0;
$n=count($mygroup);
for($i=count($mygroup); $i<($n+count($privGroups)); $i++) {
$mygroup[$i] = $privGroups[$j]; // Add "always" admins to argument admins
$j++;
}
// DB access credentials: $db, $dbhost, $login, and $pw need to be defined here
$link = mysql_connect($this->DB_HOST, $this->DB_USER, $this->DB_PASS)
or die("Could not connect : " . mysql_error());
mysql_select_db($this->DB_NAME) or die("Could not select database");
// extract all groups user's a member of
$query = "Select q.title FROM (#__user_usergroup_map as p)
LEFT JOIN (#__usergroups as q)
on p.group_id=q.id
WHERE p.user_id=$userid;";
// remove prefix etc.
$SQL = $this->cleanSQL($query);
$res=mysql_query($SQL) or die('<p>Groups select query failed<br />' . mysql_error() . "<br />$SQL</p>");
if (mysql_num_rows($res) == 0) { // No groups? Then user clearly isn't a mamber of "$group"
if($termlink) mysql_close($link);
return false;
}
while ($line = mysql_fetch_array($res, MYSQL_ASSOC)) {
extract($line);
$userGroups[]=$title;
}
mysql_close($link); // Close link
for($i=0; $i<count($userGroups); $i++){
for($j=0; $j<count($mygroup); $j++) {
if(strtolower($userGroups[$i])==strtolower($mygroup[$j])) return true;
}
}
return false;
}
这行不通;它从某个地方失败了。如果成员是给定组的一部分,是否有快捷方式来检查?
最佳答案
有一个快捷方式。
in_array($group_id, $user->getAuthorisedGroups() )
所以您只需要知道您的组 ID 并拥有一个用户对象。
关于php - JOOMLA 2.5 检查用户是否属于一个组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17052122/
我是一名优秀的程序员,十分优秀!