如何以zend形式取​​消元素

Awa*_*rni 8 zend-framework zend-form zend-form-element

我有一种形式,我有很多元素.我在许多地方使用表格.我有一个元素,file那就是:

$file= new Zend_Form_Element_File('merchantLogo');
        $file->setDestination("application_data/merchant/logo/original/");
        $file->addValidator('Count', false, 1);
        $file->addValidator('Extension', false, 'jpg,png,gif,jpeg');
        $file->setDecorators(array('ViewHelper','Errors'));
Run Code Online (Sandbox Code Playgroud)

现在,我想问一下,我怎样才能取消这种形式的任何元素.我想要这个,因为虽然在我的一个动作上我没有使用这个元素,但是这个元素正在创造问题.那么如何取消任何元素呢?