0

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

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

我似乎无法调试它,因为我知道最小的 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');
}
?>
4

1 回答 1

0

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

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

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

于 2015-12-02T16:59:06.143 回答