0

伙计们,我正在编写代码来上传文件,压缩它们并删除 tmp 文件。但是当我使用取消链接功能时,它不会删除所有文件,有人可以向我解释为什么?

关注php代码:

$zip = new ZipArchive();
$target_path = 'img/products/';
$zip->open($target_path.$id_insert.'.zip', ZIPARCHIVE::CREATE);
$img_count = $_POST['count_file'];
for ($i = 1; $i <= $img_count; $i++){
    $temp = 'img'.$i;
    $file = $i.'-'.$id_insert.'-'.$_FILES[$temp]['name'];
    $path = $target_path.basename($file); 
    if(move_uploaded_file($_FILES[$temp]['tmp_name'], $path)) {
        $zip->addFile($path, basename($file));
        $files_to_delete[] = $path;
    }
} 
$zip->close();
foreach($files_to_delete AS $file){
    //unlink(dirname(__FILE__).'/'.$path);
}
4

1 回答 1

3
foreach($files_to_delete AS $file){
    //unlink(dirname(__FILE__).'/'.$path);
}

在此块中,您应该将 $path 替换为 $file ,因为这就是您要学习它们的方式。您会收到错误,因为在您第一次取消链接 $path 后,$path 处的文件被取消链接,但它的每个其他迭代都试图删除同一个文件(这是分配给 $path 变量的最后一个文件)。

于 2011-06-13T15:22:00.317 回答