27

我有一个 check_captcha 的回调函数,它查看是否$row==0== 1(此信息是从 sql 中查询的)。

问题是我无法调用它,$self->form_validation->set_rule('captcha', 'call_back_check_captcha')因为我的函数接受了一个$rowvar。我现在调用它的方式是我收到无法访问错误消息。我怎样才能使这项工作?

function check_captcha( $row)
{
    if($row ==0)//didnt find any
    {
        $this->form_validation->set_message('captcha', 'text dont match captcha');
        return FALSE;
    }
    else
    {
        return TRUE;
    }
}


function create_member() 
        {   

            $past = time() - 7200; 

        $this->db->query("DELETE FROM captcha WHERE captcha_time <".$past);                 
        $sql = "SELECT COUNT(*) AS count FROM captcha WHERE word =? AND ip_address =?";     
        $binds = array($_POST['captcha'], $this->input->ip_address(), $past);
        $query= $this->db->query($sql, $binds);

        $row = $query->row(); //row query rows : if it found an entry =1 

            $self->check_captcha($row->count);

        //VALIDATIONS
        $this->form_validation->set_rules('first_name', 'First Name', 'trim|required');
        $this->form_validation->set_rules('last_name', 'Last Name', 'trim|required');      
        $this->form_validation->set_rules( 'email_address', 'Email Address', 'trim|required|valid_email|unique[user.email_address]');
        $this->form_validation->set_rules('username', 'Username', 'trim|required|min_length[4]|unique[user.username]');
        $this->form_validation->set_rules('password', 'Password', 'trim|required|min_length[4]|max_leng[32]');
        $this->form_validation->set_rules('password2', 'Password Confirmation','trim|required|matches[password]');
        if(!$_POST['captcha']){
        $this->form_validation->set_rules('captcha', 'Captcha','trim|required');}else{
        $this->form_validation->set_rules('captcha', 'Captcha', 'callback_check_captcha');}

        if($this->form_validation->run()==FALSE)
        {   //this -> to the curr obj(UserController) && registraion() points to the the function in controller
            $this->registration();  //reloads reg page so they can fill out right stuff
        }
        else
4

6 回答 6

51
$this->form_validation->set_message('check_captcha', 'text dont match captcha');

消息名称对应于函数,而不是字段。因此将其设置为“ check_captcha ”将修复您的错误。错误消息将使用正确的字段名称。

于 2012-05-16T06:28:59.160 回答
11

实际上,最好的方法是在语言上添加此条目“check_captcha”,而不是直接在控制器上编写错误消息。

就我而言,验证规则(表单验证)“less_than”的消息不存在。

我更改了文件/system/language/??/form_validation_lang.php。我已经添加了缺少的条目。

于 2013-01-29T13:41:24.377 回答
2

这对我有帮助

转到 application/config/autoload.php 并在那里添加“安全”帮助程序类。

$autoload['helper'] = array('security');

或者在表单验证之前添加这个

$this->load->helper('security');
于 2016-08-01T17:33:29.873 回答
1

您可以在中设置错误消息set_rules

$this->form_validation->set_rules('captcha', 'Captcha', 'callback_check_captcha',

array('check_captcha' => 'text dont match captcha'));

于 2019-04-03T11:02:35.573 回答
0

在您的语言文件中添加一个条目,其中包含错误消息(yourfieldname)内的部分名称 - 这解决了问题

于 2018-12-22T02:03:12.440 回答
0

即使已经回答了问题,还有另一个错误可能导致相同的错误消息:

如果您调用回调checkCaptcha,它将不起作用。总是喜欢像Codeigniter /General Topics/PHP 风格指南中推荐的 check_captcha 这样的名称。

于 2021-08-03T13:57:20.863 回答