|
本帖最后由 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中实现自定义验证函数
|
|