我编写了一个简单的脚本来将文件添加到存档中。经过多次挠头后,我无法让脚本正常工作。
我这里有一个 php 文件,它从一个复选框中读取,在复选框中选择的文件被添加到数组 $file 中。
$path = ('a path');
$dir = scandir('another path');
if(isset($_POST["submit"])){
if(!isset($_POST["File"])){
echo 'A file must be selected to archive it';
} else {
require_once('zip_function.php');
$file = $_POST['File'];
$goZipper = goZipper($file, $path);
if($goZipper == false) {
echo ("Error");
} else {
echo ("Success");
}
}
}
调用函数 goZipper 并将 $file 和目标传递给它,函数如下。
function goZipper($files, $destination = '',$overwrite = true) {
if(file_exists($destination) && !$overwrite) {
echo"File exists";
return false;
}
if(count($files)){
$zip = new ZipArchive();
if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true){
echo"Error opening destination";
return false;
}
foreach($files as $file){
$zip->addFile($file,basename($file));
echo("<pre>");
var_dump($zip);
exit();
}
$zip->close();
return file_exists($destination);
}
else{
return false;
}
}
每次调用该函数时都会返回 true。但是没有文件被添加。谁能在这里发现一个明显的错误?