如何在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未找到结束匹配的分隔符")"
这些错误,如何解决,请给我解决方案。
我的编码有什么错误?
试试这个。。
$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)dd),pastdate_start');