/ Published in: PHP
Unzip files with PHP.
Expand |
Embed | Plain Text
<?php /************************************** seesaw associates | http://seesaw.net client: file: description: Copyright (C) 2008 Matt Kenefick(.com) **************************************/ class zipArch { /** * Unzip the source_file in the destination dir * * @param string The path to the ZIP-file. * @param string The path where the zipfile should be unpacked, if false the directory of the zip-file is used * @param boolean Indicates if the files will be unpacked in a directory with the name of the zip-file (true) or not (false) (only if the destination directory is set to false!) * @param boolean Overwrite existing files (true) or not (false) * * @return boolean Succesful or not */ function unzip($src_file, $dest_dir=false, $create_zip_name_dir=true, $overwrite=true) { { { } { $splitter = ($create_zip_name_dir === true) ? "." : "/"; // Create the directories to the destination dir if they don't already exist $this->create_dirs($dest_dir); // For every file in the zip-packet while ($zip_entry = zip_read($zip)) { // Now we're going to create the directories in the destination directories // If the file is not in the root dir if ($pos_last_slash !== false) { // Create the directory where the zip-entry should be saved (with a "/" at the end) } // Open the entry if (zip_entry_open($zip,$zip_entry,"r")) { // The name of the file to save on the disk $file_name = $dest_dir.zip_entry_name($zip_entry); // Check if the files should be overwritten or not { // Get the content of the zip entry $fstream = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry)); file_put_contents($file_name, $fstream ); // Set the rights { } else { } } // Close the entry zip_entry_close($zip_entry); } } // Close the zip-file zip_close($zip); } else { echo "No Zip Archive Found."; return false; } return true; } else { $infoVersion="(use PHP 5.2.0 or later)"; echo "You need to install/enable the php_zip.dll extension $infoVersion"; } } function create_dirs($path) { { $directory_path = ""; foreach($directories as $directory) { $directory_path .= $directory."/"; { } } } } } ?>
You need to login to post a comment.
