Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6556161
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:54:33+00:00 2026-05-25T12:54:33+00:00

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

  • 0

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 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T12:54:34+00:00Added an answer on May 25, 2026 at 12:54 pm

    Warning: This cannot be done in memory — ZipArchive cannot work with “memory mapped files”.

    You can obtain the data of a file inside a zip-file into a variable (memory) with file_get_contentsDocs as it supports the zip:// Stream wrapper Docs:

    $zipFile = './data/zip.kmz';     # path of zip-file
    $fileInZip = 'test.txt';         # name the file to obtain
    
    # read the file's data:
    $path = sprintf('zip://%s#%s', $zipFile, $fileInZip);
    $fileData = file_get_contents($path);
    

    You can only access local files with zip:// or via ZipArchive. For that you can first copy the contents to a temporary file and work with it:

    $zip = 'http://www.curriculummagic.com/AdvancedBalloons.kmz';
    $file = 'doc.kml';
    
    $ext = pathinfo($zip, PATHINFO_EXTENSION);
    $temp = tempnam(sys_get_temp_dir(), $ext);
    copy($zip, $temp);
    $data = file_get_contents("zip://$temp#$file");
    unlink($temp);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to compress a directory using 7-Zip and then download it to
I have a server-side zip archive that I would like to pass along as
I would like to implement the download estimator using the JavaScript and the Ajax.
We have a library of ZIP files that we would like to make available
I would like to download documentation of the Drupal hooks, and whatever else would
I would like to download an mp3 file from some site, save it to
In my Java application I would like to download a JPEG, transfer it to
I would like to use standard ASP.NET file download response, like in other Stack
i would like to create a Rails controller that download a serie of jpg
I would like ask if there's a way to download an android layout from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.