php PHP:递归备份文件和文件夹到ZIP文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php PHP:递归备份文件和文件夹到ZIP文件相关的知识,希望对你有一定的参考价值。

<?php
/*
 * PHP: Recursively Backup Files & Folders to ZIP-File
 * MIT-License - 2012-2018 Marvin Menzerath
*/

// Make sure the script can handle large folders/files
ini_set('max_execution_time', 600);
ini_set('memory_limit', '1024M');

// Start the backup!
zipData('/path/to/folder', '/path/to/backup.zip');
echo 'Finished.';

// Here the magic happens :)
function zipData($source, $destination) {
	if (extension_loaded('zip')) {
		if (file_exists($source)) {
			$zip = new ZipArchive();
			if ($zip->open($destination, ZIPARCHIVE::CREATE)) {
				$source = realpath($source);
				if (is_dir($source)) {
					$files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source, RecursiveDirectoryIterator::SKIP_DOTS), RecursiveIteratorIterator::SELF_FIRST);
					foreach ($files as $file) {
						$file = realpath($file);
						if (is_dir($file)) {
							$zip->addEmptyDir(str_replace($source . '/', '', $file . '/'));
						} else if (is_file($file)) {
							$zip->addFromString(str_replace($source . '/', '', $file), file_get_contents($file));
						}
					}
				} else if (is_file($source)) {
					$zip->addFromString(basename($source), file_get_contents($source));
				}
			}
			return $zip->close();
		}
	}
	return false;
}
?>

以上是关于php PHP:递归备份文件和文件夹到ZIP文件的主要内容,如果未能解决你的问题,请参考以下文章

php ZipArchive 压缩整个文件夹 - 自带ZipArchive类 - PHP递归创建目录压缩包

liunx下把网站文件压缩为zip文件备份提供给ftp下载

强制从 php 打开和读取 zip 文件

PHP提取zip [重复]

将文件添加到 PHP 中的现有 Zip [关闭]

加密的zip文件,在PHP 7.2之前