Skip to content

Instantly share code, notes, and snippets.

@gelanivishal
Created December 25, 2016 03:03
Show Gist options
  • Save gelanivishal/94ab058c34b55ec9d0359c17ae14ee22 to your computer and use it in GitHub Desktop.
Save gelanivishal/94ab058c34b55ec9d0359c17ae14ee22 to your computer and use it in GitHub Desktop.
Create zip directroy
<?php
ini_set('display_errors',0);
ini_set('memory_limit','1024M');
set_time_limit(0);
//echo '<pre>';print_r($_SERVER);exit;
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(getcwd(),date('Y-m-d').'-all-bk'.'.zip');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment