使用PHP ZipArchive下载多个文件



我正在尝试随机下载一些文件。

我很抱歉,因为我早些时候发布了,但有人能详细解释我做错了什么吗?

我似乎无法调试它,因为我知道最小php。

<?php 
$rootPath = realpath('./uploads');
//make zip file
$zip = new ZipArchive();
$zip->open('file.zip', ZipArchive::CREATE | ZipArchive::OVERWRITE);
$nfiles = glob($rootPath.'*.{aiff}', GLOB_BRACE);     
$files = array_rand($nfiles, 20);
foreach($files as $file)  {
    $pathtofile = $nfiles[$file];
    if (!$file->isDir())
    {
        // Get path for current file
        $filePath = $pathtofile->getRealPath();
        $relativePath = str_replace($rootPath, "", $file);
        // Add file to zip
        $zip->addFile($filePath, $relativePath);
    }
}
//-------------------------------------------//
$zip->close();
header('Content-Type: application/zip');
header('Content-disposition: attachment;
filename='.'generatedsounds.zip');
header('Content-Length: ' . filesize('file.zip'));
readfile('file.zip');
if(file_exists('file.zip'))
{
    unlink('file.zip');
}
?>

您正在调用未定义的->isDir()方法,并且您正在调用也未定义的->getRealPath()

你得到了所有的文件,然后从数组中随机选择20个文件(为什么??)

当您重写标头时,错误不会显示在浏览器中,请尝试不重写标头,这意味着它将保留为html标头并进行测试,直到您获得二进制文件输出,然后将标头添加回,这样您就有了一个工作代码。

相关内容

  • 没有找到相关文章

最新更新