Extract files from a .zip file using PHP
By: David Sklar in PHP Tutorials on 2008-12-01
The unzip.php sample program below, extracts files from a ZIP archive. It uses the pc_mkdir_parents() function. The program also requires PHP's zip extension to be installed. You can find documentation on the zip extension at http://www.php.net/zip.
This program takes a few arguments on the command line. The first is the name of the ZIP archive it should unzip. By default, it unzips all files in the archive. If additional command-line arguments are supplied, it only unzips files whose name matches any of those arguments. The full path of the file inside the ZIP archive must be given. If turtles.html is in the ZIP archive inside the animals directory, unzip.php must be passed animals/turtles.html, not just turtles.html, to unzip the file.
Directories are stored as 0-byte files inside ZIP archives, so unzip.php doesn't try to create them. Instead, before it creates any other file, it uses pc_mkdir_parents() to create all directories that are parents of that file, if necessary. For example, say unzip.php sees these entries in the ZIP archive:
animals (0 bytes) animals/frogs/ribbit.html (2123 bytes) animals/turtles.html (1232 bytes)
It ignores animals because it is 0 bytes long. Then it calls pc_mkdir_parents() on animals/frogs, creating both animals and animals/frogs, and writes ribbit.html into animals/frogs. Since animals already exists when it reaches animals/turtles.html, it writes out turtles.html without creating any additional directories.
unzip.php (sample code)
// the first argument is the zip file $in_file = $_SERVER['argv'][1]; // any other arguments are specific files in the archive to unzip if ($_SERVER['argc'] > 2) { $all_files = 0; for ($i = 2; $i < $_SERVER['argc']; $i++) { $out_files[$_SERVER['argv'][$i]] = true; } } else { // if no other files are specified, unzip all files $all_files = true; } $z = zip_open($in_file) or die("can't open $in_file: $php_errormsg"); while ($entry = zip_read($z)) { $entry_name = zip_entry_name($entry); // check if all files should be unzipped, or the name of // this file is on the list of specific files to unzip if ($all_files || $out_files[$entry_name]) { // only proceed if the file is not 0 bytes long if (zip_entry_filesize($entry)) { $dir = dirname($entry_name); // make all necessary directories in the file's path if (! is_dir($dir)) { pc_mkdir_parents($dir); } $file = basename($entry_name); if (zip_entry_open($z,$entry)) { if ($fh = fopen($dir.'/'.$file,'w')) { // write the entire file fwrite($fh, zip_entry_read($entry,zip_entry_filesize($entry))) or error_log("can't write: $php_errormsg"); fclose($fh) or error_log("can't close: $php_errormsg"); } else { error_log("can't open $dir/$file: $php_errormsg"); } zip_entry_close($entry); } else { error_log("can't open entry $entry_name: $php_errormsg"); } } } }
Add Comment
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
- Your name, rating, website address, town, country, state and comment will be publicly displayed if entered.
- Aside from the data entered into these form fields, other stored data about your comment will include:
- Your IP address (not displayed)
- The time/date of your submission (displayed)
- Your email address will not be shared. It is collected for only two reasons:
- Administrative purposes, should a need to contact you arise.
- To inform you of new comments, should you subscribe to receive notifications.
- A cookie may be set on your computer. This is used to remember your inputs. It will expire by itself.
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
- Although the administrator will attempt to moderate comments, it is impossible for every comment to have been moderated at any given time.
- You acknowledge that all comments express the views and opinions of the original author and not those of the administrator.
- You agree not to post any material which is knowingly false, obscene, hateful, threatening, harassing or invasive of a person's privacy.
- The administrator has the right to edit, move or remove any comment for any reason and without notice.
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
- Data Science
- Android
- React Native
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Related Tutorials
Send push notifications using Expo tokens in PHP
PHP convert string to lower case
A Basic Example using PHP in AWS (Amazon Web Services)
Different versions of PHP - History and evolution of PHP
PHP code to write to a CSV file for Microsoft Applications
PHP code to write to a CSV file from MySQL query
PHP code to import from CSV file to MySQL
Password must include both numeric and alphabetic characters - Magento
Resume or Pause File Uploads in PHP
PHP file upload prompts authentication for anonymous users
PHP file upload with IIS on windows XP/2000 etc
Comments