我无法弄清楚'Ion Auth'中的哪个函数返回'用户'表中所有成员的用户?我在WAMP中使用Codeigniter v3.1.3中的Ion Auth。提前谢谢
答案 0 :(得分:0)
试
$qry = $this->ion_auth->users();
然后,您可以使用$qry->result();
或$qry->num_rows();
等
如果您想进行一些过滤,可以使用
$qry = $this->ion_auth->where('email', 'abc@xyz.com')->users();