使用 Silex 将文件作为下载提供

Serve file as a download with Silex

我的控制器是基本的

$app->get('/files/{type}', function ($type) use ($app) {

    $path = __DIR__ . "/../files/$type";

    if (!file_exists($path)) {
        $app->abort(404, "Ce fichier n'existe pas.");
    }

    return $app
        ->sendFile($path)
    ;
})->bind('getfile');

根据这个 doc 它有效。当我调用正确的 URL 时,文件在当前 window.

打开

但是我不想在浏览器中打开文件,我想打开对话框只保存文件。

我该怎么做?

您需要将 "content-disposition" header 设置为 attachment

例如:

return $app
    ->sendFile($path)
    ->setContentDisposition(ResponseHeaderBag::DISPOSITION_ATTACHMENT,
basename($path));

不要忘记在文件顶部添加:

 use Symfony\Component\HttpFoundation\ResponseHeaderBag;

... 所以 PHP 知道 ResponseHeaderBag 是什么,并且自动加载器能够找到它。

Linky 到文档。