Form validation rules for regex_match

后端 未结 3 948
礼貌的吻别
礼貌的吻别 2020-12-10 17:02

I\'m trying to figure out what I\'m doing wrong with this validation rule because its saying this error.

Validation rule:

$this->form_validation-&         


        
3条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-10 17:39

    Use following code its working fine at my end

    $this->form_validation->set_rules('username', 'Username','trim|required|callback_username_check|regex_match[/^[a-z0-9]+$/]');
    

提交回复
热议问题