如何在 PHP 中[递归]压缩目录
目标是有效地压缩目录,包括其所有子目录和文件,在 PHP 中。
使用 PHP Zip 的方法类
您可以利用 PHP Zip 类来实现此目的。提供的代码提供了一种基本方法,但它仅适用于单个文件,而不适用于目录。
工作代码
要解决此挑战,请考虑以下代码:
function Zip($source, $destination) { if (!extension_loaded('zip') || !file_exists($source)) { return false; } $zip = new ZipArchive(); if (!$zip->open($destination, ZIPARCHIVE::CREATE)) { return false; } $source = str_replace('\', '/', realpath($source)); if (is_dir($source) === true) { $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source), RecursiveIteratorIterator::SELF_FIRST); foreach ($files as $file) { $file = str_replace('\', '/', $file); // Ignore "." and ".." folders if( in_array(substr($file, strrpos($file, '/')+1), array('.', '..')) ) continue; $file = realpath($file); if (is_dir($file) === true) { $zip->addEmptyDir(str_replace($source . '/', '', $file . '/')); } else if (is_file($file) === true) { $zip->addFromString(str_replace($source . '/', '', $file), file_get_contents($file)); } } } else if (is_file($source) === true) { $zip->addFromString(basename($source), file_get_contents($source)); } return $zip->close(); }
用法:
调用Zip 函数如下所示:
Zip('/folder/to/compress/', './compressed.zip');
此代码递归地迭代指定的源目录及其子目录,将文件和空目录添加到 zip 存档中。它的操作兼容Windows和Linux平台。
以上是如何在 PHP 中递归压缩目录?的详细内容。更多信息请关注PHP中文网其他相关文章!