|
发表于 2012-7-25 11:01:10
|
显示全部楼层
PHP复制代码
/**
* 获取用户的注册记录(用户名或电子邮件)
* @param string
* @return object
*/
function get_user_by_login ($login) {
$this->db->where ( 'LOWER(username)=', strtolower ( $login ) );
$this->db->or_where ( 'LOWER(email)=', strtolower ( $login ) );
$query = $this->db->get ( $this->table_name );
if ($query->num_rows () == 1) {
return $query->row_array ();
}
return NULL;
}
复制代码 |
|