需要實現點擊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>