用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2239|回复: 2
收起左侧

[HELP] 自定义表单验证规则无效

[复制链接]
发表于 2012-11-14 20:43:46 | 显示全部楼层 |阅读模式
PHP复制代码
 
$this->form_validation->set_rules('user', '用户名', 'callback_user_check');
 
复制代码
PHP复制代码
 
public function user_check() {
        if (1 == 1) {
            $this->form_validation->set_message('user_check', '%s已存在');
            return FALSE;
        } else {
            return TRUE;
        }
    }
 
复制代码

错误信息不显示,是怎么回事?

发表于 2012-11-16 12:56:10 | 显示全部楼层
视图怎么写的?
发表于 2012-11-16 15:51:48 | 显示全部楼层
$this->load->library('form_validation');

本版积分规则