Zend_File_Transfer w/multiple files does not upload equally
问题 Weird title, yes, but the problem is simple; simply aggrevating. I have a form, that I built without using Zend_Form, and it has two file uploads: <input name="image" type="file" /> <input name="file" type="file" /> Here is the chunk of code from my controller that is handling the upload. There's actually a little more, but this is the relevant piece: $data['image'] = (isset($_FILES["image"]) && $_FILES["image"]["name"] ? $_FILES["image"]["name"] : NULL); $data['file'] = (isset($_FILES["file"