我正在尝试用我自己的函数扩展验证类,但它似乎跳过了检查。
我的代码
public function login_validation(){
$this->load->library('form_validation');
$this->form_validation->set_rules('email', 'Email', 'trim|required|valid_email|xss_clean|callback_validate_credentails');
$this->form_validation->set_rules('password', 'Password', 'trim|required|md5');
if($this->form_validation->run()){
#redirect('home');
//Just to check
echo "login success";
}
else{
$this->load->view('view_login');
}
}
我的 validate credentails 函数是这样的;
public function validate_credentials(){
//loads model_user
$this->load->model('model_users');
//checks if login_validate function in model_users return true
if($this->model_users->login_validate()){
return true;
}
else{
//set validation message
$this->form_validation->set_message('validate_credentails','Incorrect Username/Password');
return false;
}
}
如果需要,我在 model_users 中的 login_validate 函数;
public function login_validate(){
$this->db->where('email', $this->input->post('email'));
$this->db->where('password', md5($this->input->post('password')));
$query = $this->db->get('users');
if($query->num_rows() == 1){
return true;
}
else {
return false;
}
}
这是我第一次遇到这个问题,我做错了吗?我在这上面花了太多时间:(