In memory download and extract zip archive
问题 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 :) ): // download the data file from the real page copy("http://www.curriculummagic.com/AdvancedBalloons.kmz", "./data/zip.kmz"); // unzip it $zip = new ZipArchive; $res = $zip->open('./data/zip.kmz'); if ($res === TRUE) { $zip->extractTo('./data'); $zip->close(); } // use the unzipped files... 回答1: Warning : This cannot be done in memory — ZipArchive