Last active
December 14, 2015 05:29
-
-
Save MaraScott/5035745 to your computer and use it in GitHub Desktop.
Name : HZip - Language : PHP - type : class - platform : php - tag :
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* see: http://www.php.net/manual/en/class.ziparchive.php#110719 */ | |
| class HZip | |
| { | |
| /** | |
| * Add files and sub-directories in a folder to zip file. | |
| * @param string $folder | |
| * @param ZipArchive $zipFile | |
| * @param int $exclusiveLength Number of text to be exclusived from the file path. | |
| */ | |
| private static function folderToZip($folder, &$zipFile, $exclusiveLength) { | |
| $handle = opendir($folder); | |
| while ($f = readdir($handle)) { | |
| if ($f != '.' && $f != '..') { | |
| $filePath = "$folder/$f"; | |
| // Remove prefix from file path before add to zip. | |
| $localPath = substr($filePath, $exclusiveLength); | |
| if (is_file($filePath)) { | |
| $zipFile->addFile($filePath, $localPath); | |
| } elseif (is_dir($filePath)) { | |
| // Add sub-directory. | |
| $zipFile->addEmptyDir($localPath); | |
| self::folderToZip($filePath, $zipFile, $exclusiveLength); | |
| } | |
| } | |
| } | |
| closedir($handle); | |
| } | |
| /** | |
| * Zip a folder (include itself). | |
| * Usage: | |
| * HZip::zipDir('/path/to/sourceDir', '/path/to/out.zip'); | |
| * | |
| * @param string $sourcePath Path of directory to be zip. | |
| * @param string $outZipPath Path of output zip file. | |
| */ | |
| public static function zipDir($sourcePath, $outZipPath) | |
| { | |
| $pathInfo = pathInfo($sourcePath); | |
| $parentPath = $pathInfo['dirname']; | |
| $dirName = $pathInfo['basename']; | |
| $z = new ZipArchive(); | |
| $z->open($outZipPath, ZIPARCHIVE::CREATE); | |
| $z->addEmptyDir($dirName); | |
| self::folderToZip($sourcePath, $z, strlen("$parentPath/")); | |
| $z->close(); | |
| } | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment