0

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}]');

しかし、私は得ました

function Preg-match 末尾の一致する区切り文字 ')' が見つかりません

これらのエラー、解決方法、解決策を教えてください。

私のコーディングの間違いは何ですか?

4

1 に答える 1

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');
于 2015-03-30T10:57:16.833 に答える