Symfony2 create and download zip file

后端 未结 7 807
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:10

    To complete vincent response, just add this right before returning response :

    ...
    $response->headers->set('Content-length', filesize($zipName));
    
    unlink($zipName);
    
    return $response;
    

提交回复
热议问题