1

如果文件大小为 0 字节或里面没有任何内容,我无法下载任何文件(文本、doc 或任何其他扩展名)。这是我正在使用的代码,如下所示。

$filename = $this->input->get('filename');              
$fileoriginalname = $this->input->get('fileorgname');

$this->load->helper('download');
$Path = 'files/'.$filename;
$data = file_get_contents($Path);

force_download($fileoriginalname, $data);

谁能帮我解决它。如果文件里面有任何内容,上面的代码就可以正常工作,但是如果没有内容就停止工作,所以我很困惑并且不知何故感到沮丧。

4

2 回答 2

2

我也遇到了这个问题,但不知何故我从文件大小为零得到了帮助

您可以使用以下代码,看看它是否有帮助。

而不是使用force_download试试这个

if(ini_get('zlib.output_compression')) 
  { 
    ini_set('zlib.output_compression', 'Off'); 
  }


    $this->load->helper('file');

    $mime = get_mime_by_extension($Path);


    header('Pragma: public');     // required
    header('Expires: 0');         // no cache
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Last-Modified: '.gmdate ('D, d M Y H:i:s', filemtime ($Path)).' GMT');
    header('Cache-Control: private',false);
    header('Content-Type: '.$mime);  
    header('Content-Disposition: attachment; filename="'.$fileoriginalname.'"');  // Add the file name
    header('Content-Transfer-Encoding: binary');
    header('Content-Length: '.filesize($Path)); 
    header('Connection: close');
    readfile($Path); 
    exit();
于 2013-06-15T11:03:01.003 回答
0

我在这里猜,看不到其余的代码。

我假设当您尝试下载 0bytes 的文件时,会发生错误

所以我可能会写一些类似的东西

if(!force_download($fileoriginalname, $data))
{
    \\ the file download failed. handle this error
}
于 2013-06-15T10:50:37.170 回答