我使用下面的代码来创建和下载文件夹根目录中的所有文件的zip文件。 我有这条线
$files_to_zip = array(
'room1.jpg', 'room2.jpg'
);
允许您选择将哪些文件放入zip文件中 - 但我的文件是cron作业的结果,因此每天都会生成一个新文件。我怎么能写一个变量来说出所有文件,除了" "然后在zipfolder中列出我不想要的文件,即。 index.php等..
到目前为止,我已经尝试编写$files_to_zip = *;
(显然不会排除任何文件)但只会引发 Parse错误:语法错误
这是完整的代码:
<?php
/* creates a compressed zip file */
function create_zip($files = array(),$destination = '',$overwrite = true) {
//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) {
$zip->addFile($file,$file);
}
//debug
//echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status;
//close the zip -- done!
$zip->close();
//check to make sure the file exists
return file_exists($destination);
}
else
{
return false;
}
}
$files_to_zip = array(
'room1.jpg', 'room2.jpg'
);
//if true, good; if false, zip creation failed
$zip_name = 'my-archive.zip';
$result = create_zip($files_to_zip,$zip_name);
if($result){
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename=filename.zip');
header('Content-Length: ' . filesize($zip_name));
readfile($zip_name);
}
?>
答案 0 :(得分:1)
对文件系统进行通配符匹配的函数是glob()
。
$files_to_zip = glob("*");