views:

44

answers:

2

How to extract a zip file and save files to folder and file name to database using PHP?

A: 

Here it is:

$zip = zip_open("xyz.zip");
if ($zip) {
  while ($zip_entry = zip_read($zip)) {
    $fp = fopen("zip/".zip_entry_name($zip_entry), "w");

    // write the file name zip_entry_name($zip_entry) to DB here

    if (zip_entry_open($zip, $zip_entry, "r")) {
      $buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
      fwrite($fp,"$buf");
      zip_entry_close($zip_entry);
      fclose($fp);
    }
  }
  zip_close($zip);
}
Thariama
why do i get a -1 here?!
Thariama
no idea, some people just downvote without reading the answer properly.
krike
+1  A: 

This tutorial will teach you how to do this -> http://net.tutsplus.com/articles/news/how-to-open-zip-files-with-php/

krike