I used zend_form to solve the problem. I recently learned the zendframework framework and encountered some problems when I used zend_form. & Nbsp; I used the zend_form_element_file component when using it to create a form. However, when I use setMultiFile to set multi-file upload, I cannot rename each uploaded file or use zend_form to solve the problem.
I recently learned about the zend framework and encountered some problems when using zend_form.
I used the zend_form_element_file component when I used it to create a form. However, when I use setMultiFile to set multi-file upload, I cannot rename each uploaded file, or only name the last one, or, all files use only one name.
I hope you can see it. Please advise
------ Solution --------------------
Foreach ($ fileInfo as $ key => $ name ){
$ RenameArr [] = array ('source' => $ name ['tmp _ name'], 'target' => $ fullpath. '/'. $ newname );
}
$ Upload-> addFilter (new Zend_Filter_File_Rename ($ renameArr ));