如何利用最簡單粗糙暴力的方法將資料寫入Excel檔案中呢?
因為ms word和excel的文檔都支援html文字格式,因此我們可以基於這個原理採用html文字格式進行資料的輸出。
在html中,我們只需要將資料照著想要的順序放進對應的html表格中即可。
我們採用PHP進行資料取得整理以及建構對應的html文本,最後透過位元組流輸出下載到使用者本地。
直接上程式碼,這是一個很簡單的程序,裡面都帶著註解了。
ExportExcel.class.php檔案
<?php class ExportExcel{ /** * @desc 将数据导出到Excel中 * @param $data array 设置表格数据 * @param $titlename string 设置head * @param $title string 设置表头 * @param $filename 设置默认文件名 * @return 将字符串输出,即输出字节流,下载Excel文件 */ public function excelData($data,$titlename,$title,$filename){ #xmlns即是xml的命名空间 $str = "<html xmlns:o=\"urn:schemas-microsoft-com:office:office\"\r\nxmlns:x=\"urn:schemas-microsoft-com:office:excel\"\r\nxmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>"; #以下构建一个html类型格式的表格 $str .= $title; $str .="<table border=1><head>".$titlename."</head>"; foreach ($data as $key=> $rt ) { $str .= "<tr>"; foreach ( $rt as $k => $v ) { $str .= "<td>{$v}</td>"; } $str .= "</tr>\n"; } $str .= "</table></body></html>"; header( "Content-Type: application/vnd.ms-excel; name='excel'" ); #类型 header( "Content-type: application/octet-stream" ); #告诉浏览器响应的对象的类型(字节流、浏览器默认使用下载方式处理) header( "Content-Disposition: attachment; filename=".$filename ); #不打开此文件,刺激浏览器弹出下载窗口、下载文件默认命名 header( "Cache-Control: must-revalidate, post-check=0, pre-check=0" ); header( "Pragma: no-cache" ); #保证不被缓存或者说保证获取的是最新的数据 header( "Expires: 0" ); exit( $str ); } } ?>
<?php $obj=new ExportExcel(); $data = array( array('a11','a22','a33'), array('b11','b22','b33'), array('c11','c22','c33'), array('d11','d22','d33'), array('e11','e22','e33'), array('f11','f22','f33'), ); $excelHead = "这个是Excel表格标题"; $title = "我的Excel表"; #文件命名 $headtitle= "<tr><th colspan='3' >{$excelHead}</th></tr>"; $titlename = "<tr> <th style='width:70px;'>表格1</th> <th style='width:70px;'>表格2</th> <th style='width:70px;'>表格3</th> </tr>"; $filename = $title.".xls"; $obj->excelData($data,$titlename,$headtitle,$filename); ?>
#
以上是投機型:如何利用PHP將資料匯出到Excel表中(圖文解說)的詳細內容。更多資訊請關注PHP中文網其他相關文章!