Open In App

How to Zip a directory in PHP?

ZIP is an archive file format that supports lossless data compression. A ZIP file may contain one or more files or directories that may have been compressed. The PHP ZipArchive class can be used to zipping and unzipping. It might be need to install the class if it is not present.

Installation for Linux users:
In order to use these functions you must compile PHP with zip support by using the –enable-zip configure option.
Installation for Windows users:
As of PHP 5.3 this extension is inbuilt. Before, Windows users need to enable php_zip.dll inside of php.ini in order to use its functions.



Example: This example uses ZipArchive class and create a zipped file.




<?php
  
// Enter the name of directory
$pathdir = "Directory Name/"
  
// Enter the name to creating zipped directory
$zipcreated = "Name of Zip.zip";
  
// Create new zip class
$zip = new ZipArchive;
   
if($zip -> open($zipcreated, ZipArchive::CREATE ) === TRUE) {
      
    // Store the path into the variable
    $dir = opendir($pathdir);
       
    while($file = readdir($dir)) {
        if(is_file($pathdir.$file)) {
            $zip -> addFile($pathdir.$file, $file);
        }
    }
    $zip ->close();
}
  
?>

Example: This example uses ZipArchive class to unzip the file or directory.






<?php
  
// Create new zip class
$zip = new ZipArchive;
  
// Add zip filename which need
// to unzip
$zip->open('filename.zip');
  
// Extracts to current directory
$zip->extractTo('./');
  
$zip->close(); 
  
?>

Steps to run the program: Zip a directory ‘zipfile’ containing a file ‘a.txt’.

Similarly, do the same to unzip. Make sure the filename and path are matching. The text file a.txt is extracted from the zip file.


Article Tags :