如何在表单中创建数组元素 - zend框架2

时间:2015-10-29 14:08:45

标签: php zend-framework2

我想创建以下元素:

<input type="file" name="file[]">

我在myproject / module / Member / src / Member / Form / EditForm.php中尝试了以下代码:

$this->add(array(
            'name' => 'file',
            'type'  => 'file',
            'attributes' => array(                
                'class' => 'form-control col-md-7 col-xs-12',                
                'id' => 'file',                
            ),'options' => array(
                'multiple'=>TRUE
            ),
        ));

$this->add(array(
            'name' => 'file[]',
            'type'  => 'file',
            'attributes' => array(                
                'class' => 'form-control col-md-7 col-xs-12',                
                'id' => 'file',                
            ),'options' => array(
                'multiple'=>TRUE
            ),
        ));

但它不起作用。

1 个答案:

答案 0 :(得分:4)

对于文件上传Zend Framework 2 has a special FileInput class

使用此类非常重要,因为它还可以执行其他重要操作,例如validation before filtering。还有special filters like the File\RenameUpload可以为您重命名上传内容。

考虑到$this是您的InputFilter实例,代码可能如下所示:

$this->add(array(
    'name' => 'file',
    'required' => true,
    'allow_empty' => false,
    'filters' => array(
        array(
            'name' => 'File\RenameUpload',
            'options' => array(
                'target' => 'upload',
                'randomize' => true,
                'overwrite' => true
            )
        )
    ),
    'validators' => array(
        array(
            'name' => 'FileSize',
            'options' => array(
                'max' => 10 * 1024 * 1024 // 10MB
            )
        )
    ),
    // IMPORTANT: this will make sure you get the `FileInput` class
    'type' => 'Zend\InputFilter\FileInput'
);

将文件元素附加到表单:

// File Input
$file = new Element\File('file');
$file->setLabel('My file upload')
     ->setAttribute('id', 'file');
$this->add($file);

检查the documentation以获取有关文件上传的更多信息。 或者查看the documentation here如何制作上传表格