在實際的工作項目中,經常需要將一些重要的資料庫中存的資料匯出成Excel,例如匯出考勤報表,匯出財務報表,匯出業績報表,匯出銷售報表等。 CleverCode以前使用了兩年的PHPExcel來製作Excel導出數據,但發現用PHPExcel生成Excel實在是太麻煩了,特別是控制單元格的顏色,合併單元格,給單元格設置長度等。這些設計一個Excel通常需要花費一天的時間。後來CleverCode發現了一個簡單的方法PHP匯出xml格式的Excel,以前需要一天的工作量,現在半小時就搞定了,實在是事半功倍!
同時有的項目也需要,將一些Excel資料匯入資料庫。例如銀行給的銀行流水,銷售報表導入的資料庫中。這個通常的做法都是使用PHPExcel。
雖然讀取xml格式的Excel可以使用Xml parser, SimpleXML, XMLReader, DOMDocument等方式,但是CleverCode嘗試過使用這些方式,發現太複雜,太費勁,沒有PHPExcel好使。
所以需要讀取Excel的時候(包括xml格式的),CleverCode建議使用PHPExcel函式庫。
某集團需要各地區的負責人將其負責的城市站的訂單和銷售額導入到資料庫。
1)網站提供一個匯入的銷售報表範本。
2)每位負責人只能上傳與下載各自負責城市的資料(權限檢查)。
3)只用上傳產生當年,當日的擁有的所有季度。例如今天是2015-05-26。那麼只有產生2015一季度,與二季度。
如果是2015-12-01。則需要產生2015一,二,三,第四季。
4)顯示本季前季的資料。
5)本季的資料預設為0。
6)只能修改本季的資料。
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gbk" /> <title>PHP导入与导出xml格式的Excel</title> <style type="text/css"> body{ font-size:14px;} input{ vertical-align:middle; margin:0; padding:0} .file-box{ position:relative;width:340px} .txt{ height:22px; border:1px solid #cdcdcd; width:180px;} .btn{ background-color:#FFF; border:1px solid #CDCDCD;height:24px; width:70px;} .file{ position:absolute; top:0; right:80px; height:24px; filter:alpha(opacity:0); opacity: 0;width:260px } </style> </head> <body> <p class="file-box"> <form action="" method="post" enctype="multipart/form-data"> <input type='text' name='textfield' id='textfield' class='txt' /> <input type='button' class='btn' value='浏览...' /> <input type="file" name="fileField" class="file" id="fileField" size="28" onchange="document.getElementById('textfield').value=this.value" /> <input type="submit" name="submit" class="btn" value="上传" /> </form> <a href="export.php">下载销售报表模板</a> </p> </body> </html>
1)新建一個【銷售報表.xlsx】。設計如下。
2)將【銷售報表.xlsx】檔案另存為【銷售報表.xml】
3)開啟【銷售報表.xml】可以看到xml格式的資料。
4)找到table資訊。刪除掉ss:ExpandedColumnCount="5" ss:ExpandedRowCount="6"。這個限制死了表格的長度和寬度,所以必須去掉。
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="6" x:FullColumns="1" x:FullRows="1" ss:StyleID="s23" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="18.75">
改成
<Table x:FullColumns="1" x:FullRows="1" ss:StyleID="s23" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="18.75">
#5 PHP匯出Excel業務邏輯程式碼(Excel.php)
<?php /** * Excel.php * * Excel操作 * * Copyright (c) 2015 http://blog.csdn.net/CleverCode * * modification history: * -------------------- * 2015/5/14, by CleverCode, Create * */ class Excel{ /** * 导出excel * * @param int $userid 用户编号 * @return string $xmlStr */ public static function export($userid){ // 根据不同用户的权限,获取不同的数据 $data = self::getExportData($personid); // 获取字符串,如果excel的列是固定的可以通过Smarty方式获取 // 但是如果excel的列需要通过动态生成,则可以通过php组合字符串。 // $xmlStr = self::getXmlStrBySmarty($data); // 这个需要根据当前日期动态的生成有几个季度 $xmlStr = self::getXmlStrByPHP($data); return $xmlStr; } /** * 生成excel数据 * * @param int $userid 用户编号 * @return array 结果数据 */ public static function getExportData($userid){ if (!is_int($userid)) { return array(); } $infoBJ = array( 'city' => '北京', 'order_1' => 100, 'money_1' => 10000, 'order_2' => 200, 'money_2' => 40000 ); $infoTJ = array( 'city' => '天津', 'order_1' => 50, 'money_1' => 1000, 'order_2' => 100, 'money_2' => 2000 ); $infoGZ = array( 'city' => '广州', 'order_1' => 50, 'money_1' => 1000, 'order_2' => 100, 'money_2' => 2000 ); // 根据不同用户的权限,获取不同的数据 if (is_admin($userid)) { $data[] = $infoBJ; $data[] = $infoTJ; $data[] = $infoGZ; } else { $data[] = $infoBJ; } return $data; } /** * 通过Smarty方式获取xml字符串 * * @param array $data 结果集 * @return string $xmlStr */ public static function getXmlStrBySmarty($data){ require_once 'Smarty.class.php'; $smarty = new Smarty(); $tpl = 'file/export.tpl'; $smarty->assign('list', $data); // capture the output // 捕获输出 $xml = $smarty->fetch($tpl); return $xml; } /** * 通过PHP组合字符串方式获取xml字符串(可以动态扩展列) * * @param array $data 结果集 * @return string $xmlStr */ public static function getXmlStrByPHP($data){ $xml = ' <?xml version="1.0"?> <?mso-application progid="Excel.Sheet"?> <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" ............ </Style> </Styles> <Worksheet ss:Name="Sheet1"> <Table x:FullColumns="1" x:FullRows="1" ss:StyleID="s16" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="18.75"> '; //可以根据季度的多少动态扩展列,这里不做说明,请自行尝试。 $xml. = ' <Row ss:AutoFitHeight="0"> <Cell ss:MergeDown="1" ss:StyleID="m42513364"><Data ss:Type="String">城市</Data></Cell> <Cell ss:MergeAcross="1" ss:StyleID="s25"><Data ss:Type="String">2015一季度</Data></Cell> <Cell ss:MergeAcross="1" ss:StyleID="m42513344"><Data ss:Type="String">2015二季度</Data></Cell> </Row> <Row ss:AutoFitHeight="0"> <Cell ss:Index="2" ss:StyleID="s17"><Data ss:Type="String">订单</Data></Cell> <Cell ss:StyleID="s17"><Data ss:Type="String">销售额</Data></Cell> <Cell ss:StyleID="s17"><Data ss:Type="String">订单</Data></Cell> <Cell ss:StyleID="s17"><Data ss:Type="String">销售额</Data></Cell> </Row> '; // 输出数据 foreach ( $data as $row ) { $xml .= ' <Row ss:AutoFitHeight="0"> <Cell ss:StyleID="s18"><Data ss:Type="String">' . $row['city'] . '</Data></Cell> <Cell ss:StyleID="s19"><Data ss:Type="Number">' . $row['order_1'] . '</Data></Cell> <Cell ss:StyleID="s19"><Data ss:Type="Number">' . $row['money_1'] . '</Data></Cell> <Cell ss:StyleID="s19"><Data ss:Type="Number">' . $row['order_2'] . '</Data></Cell> <Cell ss:StyleID="s19"><Data ss:Type="Number">' . $row['money_2'] . '</Data></Cell> </Row> '; } $xml .= ' <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel"> ........... </Workbook> '; return $xml; } }
6 PHP匯出Excel客戶端程式碼(export.php)
<?php /** * export.php * * 导出excel * * Copyright (c) 2015 http://blog.csdn.net/CleverCode * * modification history: * -------------------- * 2015/5/14, by CleverCode, Create * */ // Excel类 include_once ('Excel.php'); /* * 客户端类 * 让客户端和业务逻辑尽可能的分离,降低客户端和业务逻辑算法的耦合, * 使业务逻辑的算法更具有可移植性 */ class Client{ public function main(){ // 获取xml格式字符串 $xmlStr = Excel::export(1); // 头部 $filename = '销售报表模板'; header("Content-Type: application/vnd.ms-excel; charset=UTF-8"); header("Content-Disposition: inline; filename=\"$filename.xls\""); header("Content-Transfer-Encoding: binary"); header("Pragma: public"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); // 输出字符串 echo $xmlStr; exit(); } } /** * 程序入口 */ function start(){ $client = new Client(); $client->main(); } start(); ?>
1)下載銷售範本後,填寫其中的數據,然後點擊頁面中的上傳按鈕,上傳Excel資料。
2) PHP匯入的Excel業務邏輯程式碼(Excel.php)。這裡使用了PHPExcel函式庫。
<?php /** * Excel.php * * Excel操作 * * Copyright (c) 2015 http://blog.csdn.net/CleverCode * * modification history: * -------------------- * 2015/5/14, by CleverCode, Create * */ class Excel{ /* * 读取Excel格式的数据(可以读取xml格式数据) * * @param string $filename excel文件 * @param string $startRow 开始行 * @param string $endRow 结束行 * @param string $startColumn 开始列 * @param string $endColumn 结束列 * @return array excel结果集数据 */ public static function read($filename, $startRow = 1, $endRow = null, $startColumn = 0, $endColumn = null){ $excelData = array(); if (!file_exists($filename)) { return $excelData; } require_once 'PHPExcel/PHPExcel.php'; require_once 'PHPExcel/PHPExcel/IOFactory.php'; // 加载excel文件 $objPHPExcel = PHPExcel_IOFactory::load($filename); // 获取焦点Sheet $objWorksheet = $objPHPExcel->getActiveSheet(); // 获取总行 $totalRows = $objWorksheet->getHighestRow(); // 获取总行数 // 获取总列 $highestColumn = $objWorksheet->getHighestColumn(); $totalColumns = PHPExcel_Cell::columnIndexFromString($highestColumn); // 开始行 if (!is_int($startRow) || $startRow < 1) { $startRow = 1; } // 结束行 if ($endRow == null || !is_int($endRow) || $endRow > $totalRows) { $endRow = $totalRows; } // 开始列 if (!is_int($startColumn) || $startColumn < 0) { $startColumn = 0; } // 结束列 if ($endColumn == null || !is_int($endColumn) || $endColumn > $totalColumns) { $endColumn = $totalColumns; } // 读取数据 for($rowNum = $startRow; $rowNum <= $endRow; $rowNum++) { for($colNum = $startColumn; $colNum < $endColumn; $colNum++) { $item = $objWorksheet->getCellByColumnAndRow($colNum, $rowNum); $exValue = trim($item->getValue()); $excelData[$rowNum][$colNum] = $exValue; } } return $excelData; } }
3) PHP匯入的Excel客戶端程式碼(import.php)
<?php /** * import.php * * 导入excel * * Copyright (c) 2015 http://blog.csdn.net/CleverCode * * modification history: * -------------------- * 2015/5/14, by CleverCode, Create * */ // Excel类 include_once ('Excel.php'); /* * 客户端类 * 让客户端和业务逻辑尽可能的分离,降低客户端和业务逻辑算法的耦合, * 使业务逻辑的算法更具有可移植性 */ class Client{ public function main(){ if (!$_FILES['file']) { exit(); } // 从第3行开始读取Excel数据 $datas = Excel::read($_FILES['file']['tmp_name'], 3); // 将$datas保存到数据库 // .... } } /** * 程序入口 */ function start(){ $client = new Client(); $client->main(); } start(); ?
以上是php如何實現資料的匯入與匯出xml格式的Excel的圖文程式碼分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!