6

我制作了一个表格,./data/uploads使用Zend\Filter\File\RenameUpload过滤器将文件上传到文件夹。

这就像一个魅力。我现在的问题是如何将这个文件提供给用户下载呢?

我认为它会是这样的:

$response->setContent(file_get_contents('./data/uploads/file.png'));

但我想知道最好的方法是什么。

4

2 回答 2

15

对于遇到此线程寻找答案的任何人,这是一个有效的解决方案,它正在使用流!

public function downloadAction() {
    $fileName = 'somefile';

    $response = new \Zend\Http\Response\Stream();
    $response->setStream(fopen($fileName, 'r'));
    $response->setStatusCode(200);

    $headers = new \Zend\Http\Headers();
    $headers->addHeaderLine('Content-Type', 'whatever your content type is')
            ->addHeaderLine('Content-Disposition', 'attachment; filename="' . $fileName . '"')
            ->addHeaderLine('Content-Length', filesize($fileName));

    $response->setHeaders($headers);
    return $response;
}

在这里找到: 使用 zf2 强制下载

更多详细信息: 使用 zend 发送流响应

于 2013-08-24T15:20:29.690 回答
14

感谢@henrik 的回复,但他的回答中缺少几个重要的标题。小心那个。

完整的标题堆栈:

public function downloadAction() {
    $file = 'path/to/file';
    $response = new \Zend\Http\Response\Stream();
    $response->setStream(fopen($file, 'r'));
    $response->setStatusCode(200);
    $response->setStreamName(basename($file));
    $headers = new \Zend\Http\Headers();
    $headers->addHeaders(array(
        'Content-Disposition' => 'attachment; filename="' . basename($file) .'"',
        'Content-Type' => 'application/octet-stream',
        'Content-Length' => filesize($file),
        'Expires' => '@0', // @0, because zf2 parses date as string to \DateTime() object
        'Cache-Control' => 'must-revalidate',
        'Pragma' => 'public'
    ));
    $response->setHeaders($headers);
    return $response;
}
于 2015-05-21T11:06:06.280 回答