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

[版本 4.x] 表单验证问题,CI4如何设置类似于CI3的callback的函数

[复制链接]
发表于 2020-5-25 17:09:59 | 显示全部楼层 |阅读模式
本帖最后由 dollaryliu 于 2020-5-25 17:13 编辑

表单验证问题,CI4如何设置类似于CI3的callback的函数

CI3可以这样设置rule
$this->form_validation->set_rules('username', 'Username', 'callback_username_check');

public function username_check($str)    {        if ($str == 'test')        {            $this->form_validation->set_message('username_check', 'The {field} field can not be the word "test"');            return FALSE;        }        else        {            return TRUE;        }    }
CI4,请问如何在validation rule中实现自定义验证函数


本版积分规则