3

我正在尝试将文件发送到浏览器进行下载,但没有$this->response->send_file($file_path);在控制器中使用。

我收到以下错误:

ErrorException [ Warning ]: finfo::file() [<a href='finfo.file'>finfo.file</a>]: Empty filename or path

$file_path 可以是绝对路径或相对路径,但我仍然得到同样的错误。在查看了此实现的 Kohana 代码后,我无法弄清楚它应该如何工作。

以下代码将显示基本文件名(例如,filename.ext)如何传递到 File::mime() - 这是错误的

https://github.com/kohana/core/blob/3.2/develop/classes/kohana/response.php#L434-453

// Get the complete file path
$filename = realpath($filename);

if (empty($download))
{
    // Use the file name as the download file name
    $download = pathinfo($filename, PATHINFO_BASENAME);
}

// Get the file size
$size = filesize($filename);

if ( ! isset($mime))
{
    // Get the mime type
    // HERE'S THE ISSUE!!!
    $mime = File::mime($download);
}

File::mime期望文件路径是文件系统上的绝对路径或相对路径,但 $download 只会是基本文件名(例如 filename.ext);

现在唯一对我有用的解决方案是更改 send_file() 方法“classes/kohana/response.php”中的代码

File::mime($download);$mime = File::mime($filename);

Kohana 3.3 已将此实现更改为:

$mime = File::mime_by_ext(pathinfo($download, PATHINFO_EXTENSION));

如果没有此修复,基本上 send_file 在 3.2 中不起作用。这是一个错误,还是我在这里错过了什么?

4

1 回答 1

2

我正在使用并链接到 3.2 开发分支。3.2 master 分支中不存在此问题。

对于那些感兴趣的人,请关注有关此拉取请求的讨论以查看最终修复:https ://github.com/kohana/core/pull/183

于 2012-06-18T12:05:40.830 回答