Codeigniter form validation. Alpha and spaces

前端 未结 6 631
逝去的感伤
逝去的感伤 2021-01-04 21:23

When using Codeigniter form validation, does alpha allow spaces? Ex. \"Bob Smith\"

6条回答
  •  执笔经年
    2021-01-04 21:44

    One line solution:

     $this->form_validation->set_rules('field', 'Field', 'regex_match[/^([a-z ])+$/i]');
    

    Alpha characters and space.

提交回复
热议问题