Ms7 Search
Google 搜尋 翻譯
calendar
« 九月 2024 »
            1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30            
近期文章
文章分類
網站連結
Syndicate

« | »

PHP utf-8 用 header 檔案下載 word error

2013-03-08 @ 23:30 in 學校網頁

以前在 big5 網頁用

header("Content-Type: application/force-download; name=\"".$file."\""); //==> 當你存檔的時候正確顯示你的檔名
header("Content-Disposition: attachment; filename=\"".$file."\""); //==> 當你存檔的時候正確顯示你的檔名
header("Content-Transfer-Encoding: binary");
readfile($df);

可以下載 word 或 pdf 的檔案

可是改成 utf-8  網頁時,下載 word 檔案就顯示無法啟動轉換程式,在網頁上找到有人說是 buffer 的問題,後來看到有人加入清 buffer 的函數,竟然就可以了,將指令修改如下

header("Content-Type: application/force-download; name=\"".$file."\""); //==> 當你存檔的時候正確顯示你的檔名
header("Content-Disposition: attachment; filename=\"".$file."\""); //==> 當你存檔的時候正確顯示你的檔名
header("Content-Transfer-Encoding: binary");
ob_clean();
flush();

readfile($df);

 

迴響

PHP utf-8 用 header 檔案下載 word error | 豬窩

Somebody necessarily lend a hand to make seriously posts I would
state. That is the very first time I frequented your web page and up to now?
I surprised with the analysis you made to make this actual put up
amazing. Excellent task!

作者 website hosting @ 17:36, 2020-08-07

PHP utf-8 用 header 檔案下載 word error | 豬窩

I'm really impressed with your writing skills and also
with the layout on your weblog. Is this a paid theme or did you customize it yourself?
Anyway keep up the nice quality writing, it's rare to see a great blog like this one
today.

作者 best web hosting @ 16:42, 2020-08-10
«上一篇   1 2 3 4 5 6
發表迴響
 authimage