In memory download and extract zip archive

后端 未结 4 1932
失恋的感觉
失恋的感觉 2020-12-18 00:13

I would like to download a zip archive and unzip it in memory using PHP.

This is what I have today (and it\'s just too much file-handling for me :) ):



        
4条回答
  •  无人及你
    2020-12-18 01:00

    As easy as:

    $zipFile = "test.zip";
    $fileInsideZip = "somefile.txt";
    $content = file_get_contents("zip://$zipFile#$fileInsideZip");
    

提交回复
热议问题