odd Zend_Form_Element_File behavior
问题 I have the following element in my form: $attachment = new Zend_Form_Element_File('attachment'); $attachment->setLabel('Attach File (2MB Max)'); $attachment->addValidator('Count', false, 1); $attachment->addValidator('Size', false, 2048000); If I print the entire form in the view, this field works fine. However I have some very custom HTML that I'm using for display, so I am echoing out each form element like this in my view: <?=$this->form->attachment?> This works fine for other fields.