首頁  >  文章  >  後端開發  >  header實作檔案下載的問題

header實作檔案下載的問題

WBOY
WBOY原創
2016-12-01 00:56:191353瀏覽

需要實現點擊button然後獲取信息,將內容以文件形式下載下來。
但現在點擊button是開啟新視窗並且顯示出內容,而不是彈出下載窗。
程式碼如下:

<code>$filename = $this->input->cookie('merchant_id');
$timestamp = date("YmdHis",time());
$filename .= $timestamp.'.'.$fileType;

$title = mb_convert_encoding($title,'gbk','utf-8');

header('Content-type: application/octet-stream');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Content-Disposition: attachment; filename=' . $filename);
echo $title;

$ret = $this->download_model->QueryList($Req, $Resp);
$content = $this->GetDownLoadContentNew($ret['bill_list'], $fileType);
echo $content;
</code>

其中GetDownLoadContentNew是對內容進行對應的格式化。
不知道哪裡有問題或有什麼地方沒注意到?希望大家幫忙看下,謝謝。 (fileType是csv或txt,在不同瀏覽器上都是一樣都無法觸發下載)

回覆內容:

需要實現點擊button然後獲取信息,將內容以文件形式下載下來。
但現在點擊button是開啟新視窗並且顯示出內容,而不是彈出下載窗。
程式碼如下:

<code>$filename = $this->input->cookie('merchant_id');
$timestamp = date("YmdHis",time());
$filename .= $timestamp.'.'.$fileType;

$title = mb_convert_encoding($title,'gbk','utf-8');

header('Content-type: application/octet-stream');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Content-Disposition: attachment; filename=' . $filename);
echo $title;

$ret = $this->download_model->QueryList($Req, $Resp);
$content = $this->GetDownLoadContentNew($ret['bill_list'], $fileType);
echo $content;
</code>

其中GetDownLoadContentNew是對內容進行對應的格式化。
不知道哪裡有問題或有什麼地方沒注意到?希望大家幫忙看下,謝謝。 (fileType是csv或txt,在不同瀏覽器上都是一樣都無法觸發下載)

<code>/**
  * 强制下载文件 
  * @param string $file 文件路径 
*/
function force_download($file){ 
    if ((isset($file)) && (file_exists($file))) {
        header("Content-length: ".filesize($file)); 
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment;filename="'.basename($file).'"'); 
        readfile($file); } 
    else { 
        echo "No file selected"; 
    }
}
//使用示例
force_download('./test.jpg');</code>
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn