3
Guys, in my folder being zipped, there are files .php
and images, but I need to zip only the images!
Is there any possibility with the class ZipArchive
of PHP?
My job (works perfectly for everything inside the folder):
/* creates a compressed zip file */
function create_zip($files = array(),$destination = 'revelacao/',$overwrite = false) {
//if the zip file already exists and overwrite is false, return false
if(file_exists($destination) && !$overwrite) { return false; }
//vars
$valid_files = array();
//if files were passed in...
if(is_array($files)) {
//cycle through each file
foreach($files as $file) {
//make sure the file exists
if(file_exists($file)) {
$valid_files[] = $file;
}
}
}
//if we have good files...
if(count($valid_files)) {
//create the archive
$zip = new ZipArchive();
if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {
return false;
}
//add the files
foreach($valid_files as $file) {
$new_filename = substr($file,strrpos($file,'/680') + 1);
$zip->addFile($file,$new_filename);
}
//debug
echo 'O zip contém ',$zip->numFiles,' status( 0 para ok e 1 para erro) : ',$zip->status;
//close the zip -- done!
$zip->close();
//check to make sure the file exists
return file_exists($destination);
}
else
{
return false;
}
}
Updating: The variable
$file
that’s inside theforeach
, does not only contain the name and extension of the file but the entire path. Example: pasta1/subpasta1/photo.jpg
Have you tried using pathinfo()? Follow doc: http://php.net/manual/en/function.pathinfo.php
– Eduardo Silva
$valid_files
would be a filtration? ocreate_zip($files = array()
receives "files" or "folders"?– Guilherme Nascimento
$valid_files checks the valid files, ie not folder!
– Lollipop