我创建了一个从数据库中撤回用户数据的函数:
function user()
{
$user_id = $this->ci->session->userdata('user_id');
if (!is_null($user = $this->ci->users->get_user_by_id($user_id, TRUE))) {
return $this->ci->users->get_user($user_id); //model
}
return FALSE;
}
我在任何控制器中都使用它:
$this->tank_auth->user()->field
。
对我来说不方便,所以我需要做的就是获得这样的用户数据?
$this->user->field
或$this->tank_auth->user->field
。
我的第二个问题,关于上述功能是这个功能:
function is_admin()
{
if ( $this->user()->who )
{
return $this->user()->who === "ADMIN";
}
return FALSE;
}
确实会抛出错误:
A PHP Error was encountered
Severity: Notice
Message: Trying to get property of non-object
Filename: libraries/Tank_auth.php
Line Number: 335
(第335行是if ( $this->user()->who )
)。
为什么会这样?这两个函数都位于tank_auth的库中,因此它应该可以正常工作,但它没有。
我会感谢任何帮助尝试。
答案 0 :(得分:0)
如果将此方法添加到users.php模型:
function get_user_profile_by_id($user_id){
$this->db->where('user_id', $user_id);
$query = $this->db->get($this->profile_table_name);
if ($query->num_rows() == 1) return $query->row();
return NULL;
}
然后,您可以在userprofile表中添加varchar字段用户类,并检查用户是否属于某个类:
$profile = $this->users->get_user_profile_by_id($this->tank_auth->get_user_id());
if ($profile->userclass = "ADMIN") {
...
}
希望有所帮助。