I have compressed_file.zip on a site with this structure:

zip file

I want to extract all content from version_1.x folder to my root folder:

desired

How can I do that? is possible without recursion?

link|improve this question

73% accept rate
you should mark @netcoder answer as correct. It worked for me. – kimsia Mar 14 at 2:10
feedback

2 Answers

It's possible, but you have to read and write the file yourself using ZipArchive::getStream:

$source = 'version_1.x';
$target = '/path/to/target';

$zip = new ZipArchive;
$zip->open('myzip.zip');
for($i=0; $i<$zip->numFiles; $i++) {
    $name = $zip->getNameIndex($i);

    // Skip files not in $source
    if (strpos($name, "{$source}/") !== 0) continue;

    // Determine output filename (removing the $source prefix)
    $file = $target.'/'.substr($name, strlen($source)+1);

    // Create the directories if necessary
    $dir = dirname($file);
    if (!is_dir($dir)) mkdir($dir, 0777, true);

    // Read from Zip and write to disk
    $fpr = $zip->getStream($name);
    $fpw = fopen($file, 'w');
    while ($data = fread($fpr, 1024)) {
        fwrite($fpw, $data);
    }
    fclose($fpr);
    fclose($fpw);
}
link|improve this answer
It looks that will work but returns these errors: Warning: fopen(//) [function.fopen]: failed to open stream: Is a directory in /extract_zip.php on line 21 Warning: fclose(): supplied argument is not a valid stream resource in /extract_zip.php on line 26 Warning: fopen(//application/) [function.fopen]: failed to open stream: Is a directory in /extract_zip.php on line 21 Warning: mkdir() [function.mkdir]: No such file or directory in /extract_zip.php on line 17 There are hundreds of lines like above; file has 200+ items – quantme Nov 12 '11 at 18:04
@quantme: The above code works fine for me. You probably forgot something. You may want to ask another question for this other issue. – netcoder Nov 12 '11 at 18:40
This code works very well for me. I had the same question as quantme. The only thing missing I think is a $zip->close and a if ($zip->open('myzip.zip') === TRUE) { Too bad I cannot mark this question as answered by you. – kimsia Mar 14 at 2:09
I have modified your answer a tad by adding the parts that I think are necessary and I improved the skip files portion because your code may write out the version 1.1_x folder as well. – kimsia Mar 14 at 2:19
feedback

Look at the docs for extractTo. Example 1.

link|improve this answer
This is not a good answer because extractTo in all sorts of ways, would always extract the version 1.1_x folder no matter what. I have tried this many times and only ZipArchive::getStream as suggested by @netcoder works. – kimsia Mar 14 at 2:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.