-
Star
(106)
You must be signed in to star a gist -
Fork
(34)
You must be signed in to fork a gist
-
-
Save menzerath/4185113 to your computer and use it in GitHub Desktop.
| <?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; | |
| } | |
| ?> |
Hi,
@prashantkumarabhishek
You are right, But make sure to do not keep backups in site root. Keep it in Hosting root.
Thank you.
Maybe include "exclude folder/file" option now ?
Add ignored list (Array) and directory separator compatibility
`function zipData($source, $destination, $ignores = []) {
if (extension_loaded('zip')) {
if (file_exists($source)) {
$zip = new ZipArchive();
if ($zip->open($destination, ZIPARCHIVE::CREATE)) {
if (is_dir($source)) {
$files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source, RecursiveDirectoryIterator::SKIP_DOTS), \RecursiveIteratorIterator::SELF_FIRST);
foreach ($files as $file) {
$ignored = false;
foreach ($ignores as $ignore) {
if(strpos($file, $ignore)){
$ignored = true;
break;
}
}
if($ignored){
continue;
}
if (is_dir($file)) {
$zip->addEmptyDir(str_replace($source . DIRECTORY_SEPARATOR, '', $file . DIRECTORY_SEPARATOR));
} else if (is_file($file)) {
echo(str_replace($source . DIRECTORY_SEPARATOR, '', $file . DIRECTORY_SEPARATOR).'<br>');
$zip->addFromString(str_replace($source . DIRECTORY_SEPARATOR, '', $file), file_get_contents($file));
}
}
} else if (is_file($source)) {
$zip->addFromString(basename($source), file_get_contents($source));
}
}
return $zip->close();
}
}
return false;
}`
In the same lane.
What about a backup program which takes files from a dir and all subdirs newer than a specific date and zips it.
I cant get it to work. is this not working with newer PHP versions? 7.2?
is this code can create zip up 10 GB files into backup of any sites ?
Just replace few line and this issue will solve, everytime it will create a new zip
$dest=time()."backup.zip";
zipData('screenshots', $dest);
echo 'Finished.';