Skip to content

Instantly share code, notes, and snippets.

@eapdob
Created June 8, 2019 20:19
Show Gist options
  • Save eapdob/2902345bcaac8d7a6455cc93dfd9078e to your computer and use it in GitHub Desktop.
Save eapdob/2902345bcaac8d7a6455cc93dfd9078e to your computer and use it in GitHub Desktop.
zip catalog
<?php
ini_set('max_execution_time', 600);
ini_set('memory_limit','1024M');
// Start the backup!
zipData('public_html', 'backup.zip');
echo 'Finished.';
// Here the magic happens :)
function zipData($folder, $zipTo) {
if (extension_loaded('zip') === true) {
if (file_exists($source) === true) {
$zip = new ZipArchive();
if ($zip->open($destination, ZIPARCHIVE::CREATE) === true) {
$source = realpath($source);
if (is_dir($source) === true) {
$files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source), RecursiveIteratorIterator::SELF_FIRST);
foreach ($files as $file) {
$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();
}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment