我在form_validation.php中设置了验证表单的数组。
但是,我有一些动态字段可能(或可能不)插入此数组。
所以我使用下面的代码,我想知道这是否正确
if($this->form_validation->run('agenda_de_contatos')){
if($this->input->post('contato[]')!=""){
$this->form_validation->set_rules($this->input->post('contato[]'), 'USC_CONTATO', 'trim|xss_clean');
$this->form_validation->set_rules($this->input->post('contato_tipo[]'), 'USC_TIPO', 'trim|xss_clean');
}
if($this->form_validation->run()){...}
或者,如果我能以某种方式将itens添加到原始数组然后运行表单验证?
感谢的,