執行此程式,就會把html內容轉成word,並輸出成
word_filenam
e.doc
給client端下載
<?php
header("Content-type: text/html;
charset
=
utf8
"); //頁面編碼
header("Content-Type:application/msword"); //將此html頁面轉成word
header("Content-Disposition:attachment;
filename
=
".mb_convert_encoding("
word_filenam
e
","gbk","utf8").".doc"); //設定word檔名
header("Pragma:no-cache");
header("Expires:0");
<
html
>
<
meta
http-equiv
=
Content
-Type
content
=
"text/html; charset=utf8"
>
<
body
>
<p>hello world</p>
</
body
>
</
html
>
參考資料 http://xuxueliang.blog.51cto.com/5576502/1367855
不好意思我想請問
回覆刪除/*'
開始輸出內容 (一般html格式皆可)
*/
這部份~是我在裡面輸入文字,
它會顯示在word檔案嗎?
我試了但是都呈現出空白的畫面耶~
麻煩你謝謝:D
需要把 /* */註解刪掉
刪除您好
回覆刪除請問一下
這個範例是要將第一段程式碼貼在一個.html檔之中嗎
第一段程式碼(分隔線前) 要貼在一個php檔
刪除第二段程式碼(分隔線後) 則是另一個php檔,檔名須為word.php