我正在尝试将文件发送到浏览器进行下载,但没有$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 中不起作用。这是一个错误,还是我在这里错过了什么?