Multiple file upload with Symfony2

后端 未结 11 835
温柔的废话
温柔的废话 2020-12-01 02:12

I\'m trying to upload multiple files via a form, but I can only upload one file at a time, the last one I mark in the browser. Is there a way to upload more images with Symf

11条回答
  •  粉色の甜心
    2020-12-01 02:44

    Symfony introduced 'multiple' option to file field type in symfony 2.5

    $builder->add('file', 'file', array('multiple' => TRUE));
    

提交回复
热议问题