create and download zip file using php

前端 未结 5 746
借酒劲吻你
借酒劲吻你 2020-12-10 21:00

i am trying to create a zip file(using php) for this i have written the following code:

$fileName = \"1.docx,2.docx\";
$fileNames = explode(\',\', $fileName)         


        
5条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-10 21:41

    Why not use the Zip Encoding Class in Codeigniter - it will do this for you

    $name = 'mydata1.txt';
    $data = 'A Data String!';
    
    $this->zip->add_data($name, $data);
    
    // Write the zip file to a folder on your server. Name it "my_backup.zip"
    $this->zip->archive('/path/to/directory/my_backup.zip'); 
    
    // Download the file to your desktop. Name it "my_backup.zip"
    $this->zip->download('my_backup.zip');
    

    https://www.codeigniter.com/user_guide/libraries/zip.html

提交回复
热议问题