Symfony2 create and download zip file

后端 未结 7 810
Happy的楠姐
Happy的楠姐 2020-12-15 06:51

I have one application that upload some files and then I can compress as zip file and download.

The export action:

public function exportAction() {
          


        
7条回答
  •  北海茫月
    2020-12-15 07:01

    Since Symfony 3.2+ can use file helper to let file download in browser:

    public function someAction()
    {
        // create zip file
        $zip = ...;
    
        $this->file($zip);    
    }
    

提交回复
热议问题