我可能有一个解决方案。文件上传通常很难实现和自定义,特别是使用 zend,这就是为什么我使用特定的装饰器来更改表单的行为和呈现。因此,您可以对错误消息做任何您想做的事情,一个简单的例子:
表单示例文件:
private $fileDecorators = array(
'File', array('ViewScript', array(
'viewScript' => 'forms/file.phtml',
'placement' => false)))
;
$uploadfile = new Zend_Form_Element_File('uploadfile', array(
'disableLoadDefaultDecorators' => true,
'decorators' => $this->fileDecorators,
'description' => 'form_uploadfile_description',
'label' => 'form_uploadfile_label',
'required' => true,
'destination' => '/tmp',
'filters' => array(
),
'validators' => array(
//array('StringLength', array(0, 256)),
array('Size', true, '1MB'),
array('Extension', true, 'jpg,png,gif'),
array('Count', true, 1)
)
));
$this->addElement($uploadfile);
以及 file.phtml 装饰器文件的内容,您可以在其中自定义渲染:
<?php
$type=explode('_',$this->element->getType());
$myclass = 'form_item ' . strtolower(end($type));
?>
<div class="<?php echo $myclass; ?>" id="field_<?php echo $this->element->getId(); ?>">
<?php if (0 < strlen($this->element->getLabel())): ?>
<?php echo $this->formLabel($this->element->getFullyQualifiedName(), $this->element->getLabel(),array('class'=>($this->element->isRequired())?' required':""));?>
<?php endif; ?>
<div class="float_100">
<span class="file_wrapper">
<?php echo $this->content; ?>
<span class="button"><?=$this->translate('choose_an_image')?></span>
</span>
</div>
<?php if (0 < strlen($this->element->getDescription())): ?>
<div class="tooltip"><?php echo $this->element->getDescription(); ?></div>
<?php endif; ?>
<?php if (0 < strlen($this->element->getMessages())): ?>
<div class="error">
// Print your error here
</div>
<?php endif; ?>
</div>
希望这有帮助