用php生成excel檔案 (轉)

worldblog發表於2007-12-04
用php生成excel檔案 (轉)[@more@] 用生成

哈哈,今天又學一招。php生成excel文件太簡單了,估計大家都會用到,所以

共享出來。

大家來看程式碼:

  header("Content-type:application/vnd.ms-excel");

  header("Content-Disposition:filename=test.xls");

  echo "test1t";

  echo "test2tn";

  echo "test1t";

  echo "test2tn";

  echo "test1t";

  echo "test2tn";

  echo "test1t";

  echo "test2tn";

  echo "test1t";

  echo "test2tn";

  echo "test1t";

  echo "test2tn";

?>

在php環境執行上面的程式碼,大家就可以看到詢問是否excel

文件,點選儲存,上就多了一個excel的檔案,使用excel開啟就會看到

最終的結果,怎麼樣不錯吧。

其實在做真正的應用的時候,大家可以將資料從中取出,然後按照每

一列資料結束後加t,每一行資料結束後加n的方法echo出來,在php的開頭

用header("Content-type:application/vnd.ms-excel");表示輸出的是

excel檔案,用header("Content-Disposition:filename=test.xls");表

示輸出的檔名為text.xls。這樣就ok了。

我們更可以修改header讓他輸出更多格式的檔案,這樣php在處理各種型別

檔案方面就更加方便了。

 :namespace prefix = o ns = "urn:schemas--com::office" />

Yorgo Sun (to:yorgo@163">yorgo@163.net)

2000/11/14

歡迎轉載,但請保證文件完整,通知作者。謝謝 :-)


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-988449/,如需轉載,請註明出處,否則將追究法律責任。

相關文章