header實作檔案下載的問題

WBOY
發布: 2023-03-01 20:38:02
原創
1309 人瀏覽過

需要實現點擊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>
登入後複製
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!