天天看點

php execl表格導出

PHP#資料Excel導出的一些政策

導出其實在任何類型的後端系統都比較常見,正規情況下excel導出的資料應該更多的用來做備份、底稿,理想情況下針對業務資料的任何業務操作都不應該依靠從後端業務系統導出資料然後人工進行幹涉處理,但現實很骨感。。。

資料導出這類的功能在有條件的情況下是須要封裝起來的,隻有一個資料出口,在後續的業務規則調整變更時會真正的展現出它的價值。當一個典型的應用系統出現了五花八門的資料導出需求,說明這個應用系統的業務分析做的不夠好或者很差,當使用者隻想用應用系統導出資料來輔助他們的業務流程時,最恐怖的情況就會是使用者和資料庫的距離隻是隔着一個導出按鈕。。。

環境

1.PHP5.5.14 (cli) (built: Sep  9 201419:09:25)

2.PHP Excel 1.7.8 (http://www.codeplex.com/PHPExcel)

處理邏輯

其實這類問題的關鍵點就是如何定義導出規則,定義的這套規則是否能适應業務流程,最基本的辦法就是将資料導出的過程抽象為3個基礎階段,而後每個階段可以再進行逐漸的細化:

1.導出規則的定義

2.業務資料與導出規則的适配

3.導出規則解析構造Excel

示例

該示例實作了基本的導出功能,沒有進行任何封裝,沒有關注性能或其它擴充性問題。

[php] view plain copy print ?

php execl表格導出
php execl表格導出
  1. <?php  
  2. namespace org\ybygjy\comp\excel;  
  3. class ExcelComp {  
  4.     public function __construct() {  
  5.         require_once 'org/ybygjy/library/excel/PHPExcel.php';  
  6.     }  
  7.     public function doTest() {  
  8.         //構造原始資料  
  9.         $dataArray = $this->buildData();  
  10.         //導出  
  11.         $this->doExportData($dataArray);  
  12.     }  
  13.     public function doExportData($dataArr) {  
  14.         $phpObjExcel = new \PHPExcel();  
  15.         $worksSheet = $phpObjExcel->setActiveSheetIndex(0);  
  16.         //構造表頭資料_Begin  
  17.         $tmpColTitles = [];  
  18.         $firstDataEntry = $dataArr[0];  
  19.         //配置設定列索引  
  20.         $colIndex = 0;  
  21.         foreach($firstDataEntry as $key => $val) {  
  22.             if (preg_match('/^_/', $key)) {  
  23.                 continue;  
  24.             }  
  25.             if (is_array($val)) {  
  26.                 //取array下的列名稱  
  27.                 $val = $val[0];  
  28.                 $rowNums = count($val);  
  29.                 foreach ($val as $innerKey => $innerValue) {  
  30.                     $tmpColTitles[] = array(  
  31.                         'parentKey' => $key,  
  32.                         'key' => $innerKey,  
  33.                         'colIndex' => $colIndex  
  34.                     );  
  35.                     $colIndex++;  
  36.                 }  
  37.             } else {  
  38.                 $tmpColTitles[] = array(  
  39.                     'key'=>$key,  
  40.                     'colIndex'=>$colIndex  
  41.                 );  
  42.                 $colIndex++;  
  43.             }  
  44.         }  
  45.         for($i = 0; $i < count($tmpColTitles); $i++) {  
  46.             $tmpObj = $tmpColTitles[$i];  
  47.             $key = $tmpObj['key'];  
  48.             $colIndex = $tmpObj['colIndex'];  
  49.             $worksSheet->setCellValueByColumnAndRow($colIndex,1,$key);     
  50.         }  
  51.         //構造表頭資料_End  
  52.         //填充單元格資料  
  53.         $currRow = 2;  
  54.         foreach ($dataArr as $dataEntry) {  
  55.             $mergeRow = $dataEntry['_DIMENSION'];  
  56.             foreach ($tmpColTitles as $colEntry) {  
  57.                 $key = $colEntry['key'];  
  58.                 $colIndex = $colEntry['colIndex'];  
  59.                 $parentKey = (isset($colEntry['parentKey']) ? $colEntry['parentKey'] : null);  
  60.                 if (empty($parentKey)) {  
  61.                     $value = $dataEntry[$key];  
  62.                     if ($mergeRow == 1) {  
  63.                         $worksSheet->setCellValueByColumnAndRow($colIndex, $currRow, $value);  
  64.                     } else {  
  65.                         $worksSheet->mergeCellsByColumnAndRow($colIndex, $currRow, $colIndex, ($currRow + $mergeRow - 1))->setCellValueByColumnAndRow($colIndex, $currRow, $value);  
  66.                     }  
  67.                 } else {  
  68.                     $tmpDataArr = $dataEntry[$parentKey];  
  69.                     $innerRow = $currRow;  
  70.                     for($index = 0; $index < count($tmpDataArr); $index++) {  
  71.                         $innerDataEntry = $tmpDataArr[$index];  
  72.                         $value = $innerDataEntry[$key];  
  73.                         $worksSheet->setCellValueByColumnAndRow($colIndex, $innerRow, $value);  
  74.                         $innerRow++;  
  75.                     }  
  76.                 }  
  77.             }  
  78.             $currRow += $mergeRow;  
  79.         }  
  80.         header('Content-Type: application/vnd.ms-excel');  
  81.         header('Content-Type: application/force-download');  
  82.         header('Content-Type: application/octet-stream');  
  83.         header('Content-Type: application/download');  
  84.         header('Content-Disposition: attachment;filename="HelloWord.xls"');  
  85.         header('Cache-Control: max-age=0');  
  86.         header('Cache-Control: max-age=1');  
  87.         header('Cache-Control: no-cache, must-revalidate');  
  88.         header('Pragma: public');  
  89.         $objWriter = \PHPExcel_IOFactory::createWriter($phpObjExcel, 'Excel5');  
  90.         $objWriter->save('php://output');  
  91.     }  
  92.     private function buildData() {  
  93.         $rtnData = array(  
  94.             array(  
  95.                 'name'=>'YanCheng_01',  
  96.                 'age'=>'20',  
  97.                 'addr'=>array(  
  98.                     array(  
  99.                         'country'=>'China',  
  100.                         'province'=>'ShanDong'  
  101.                     ),  
  102.                     array(  
  103.                         'country'=>'China',  
  104.                         'province'=>'BeiJing'  
  105.                     )  
  106.                 ),  
  107.                 '_DIMENSION'=>2  
  108.             ),  
  109.             array(  
  110.                 'name'=>'YanCheng_02',  
  111.                 'age'=>'21',  
  112.                 'addr'=>array(  
  113.                     array(  
  114.                         'country'=>'China',  
  115.                         'province'=>'LanZhou'  
  116.                     ),  
  117.                     array(  
  118.                         'country'=>'China',  
  119.                         'province'=>'NingXia'  
  120.                     )  
  121.                 ),  
  122.                 '_DIMENSION'=>2  
  123.             ),  
  124.             array(  
  125.                 'name'=>'YanCheng_03',  
  126.                 'age'=>'22',  
  127.                 'addr'=>array(  
  128.                     array(  
  129.                         'country'=>'China',  
  130.                         'province'=>'JiaYuGuan'  
  131.                     )  
  132.                 ),  
  133.                 '_DIMENSION'=>1  
  134.             )  
  135.         );  
  136.         return $rtnData;  
  137.     }  

繼續閱讀