请问<= 这个是什么符号
本帖最后由 viqecel 于 2012-7-19 12:31 编辑就是这一句$this->groups[$this->_user['group' <=$this->groups[$group)
/** * 判断用户权限
*
* @access public
* @param string $group 用户组
* @param boolean $return 是否为返回模式
* @return boolean
*/
public function exceed($group, $return = false)
{
/** 权限验证通过 */
if(array_key_exists($group, $this->groups) && $this->groups[$this->_user['group']] <= $this->groups[$group])
{
return TRUE;
}
/** 权限验证未通过,同时为返回模式 */
if($return)
{
return FALSE;
}
/** 非返回模式 */
show_error('禁止访问:你的权限不足');
return;
}
一般都是小于等于吧~~~
http://www.92qqtx.com 非主流头像
http://www.qqmingzi.cc QQ情侣名字
对.是小于等于,只是感觉写法怪.蒙了
页:
[1]