1

我已经进行了电子邮件验证。

$this->form_validation->set_rules('email', 'Email Address', 'trim|required|valid_email|callback_email_check');

function email_check($str)
{
    if (stristr($str,'@uni-email-1.com') !== false) return true;
    if (stristr($str,'@uni-email-2.com') !== false) return true;
    if (stristr($str,'@uni-email-3.com') !== false) return true;
    $this->form_validation->set_message('email', 'Please provide an acceptable email address.');
    return FALSE;
}

提交我的表单后,它显示“无法访问与您的字段名称对应的错误消息”。我的代码有问题吗?

4

2 回答 2

5

它应该是

$this->form_validation->set_message('email_check', 'Please provide an acceptable email address.');
于 2013-09-27T03:28:45.380 回答
5

转到文档以供参考这里

要设置您自己的自定义消息,您可以使用以下函数:

$this->form_validation->set_message('rule', 'Error Message');

但是您没有在代码中正确命名规则,它应该email_checkemail

$this->form_validation->set_message('email_check', 'Please provide an acceptable email address.');
于 2013-09-27T04:30:42.807 回答