如何在Codeigniter中完成日期表单验证,
我试过这样,
$this->form_validation->set_rules('pastdate_start', 'Date of birth',
'regex_match[(0[1-9]|1[0-9]|2[0-9]|3(0|1))-(0[1-9]|1[0-2])-\d{4}]');
但我得到了
功能Preg-match没有结束匹配分隔符')'found
这些错误,如何解决,请给我解决。
我的编码有什么错误?
答案 0 :(得分:0)
试试这个..
$this->form_validation->set_rules('pastdate_start','Date of birth','required|regex_match[/^(0[1-9]|[12][0-9]|3[01])[- /.](0[1-9]|1[012])[- /.]((?:19|20)\d\d),pastdate_start');