当前位置:首页 > PHP教程 > php应用 > 列表

关于PHP导出Excel的优化详解

发布:smiling 来源: PHP粉丝网  添加日期:2022-06-06 08:11:57 浏览: 评论:0 

针对PHP导出Excel的优化,在我之前的一篇文章里已经做过介绍:关于PHP内存溢出的思考,本文主要是介绍一款高性能的导出组件–xlswriter,他是一个PHP C扩展,官方文档地址,请点击

安装

安装pecl

当我们发现pecl未安装时,则需要安装pecl。一般情况下,是安装在PHP的安装目录,示例命令如下:

  1. # 进入PHP安装目录 
  2.  
  3. cd /usr/local/php/bin 
  4.  
  5. curl -o go-pear.php http://pear.php.net/go-pear.phar 
  6.  
  7. php go-pear.php 
  8.  
  9. # 安装完成后,软连接到bin目录下 
  10.  
  11. ln -s /usr/local/php/bin/pecl /usr/bin/pecl 

安装xlswriter

pecl install xlswriter

# 添加 extension = xlswriter.so 到 ini 配置

使用

具体使用可以参考官方文档,会介绍的更加详细,我这就上一段我使用中的代码:

封装的导出service

  1.   /** 
  2.  
  3.      * 下载 
  4.  
  5.      * @param $header 
  6.  
  7.      * @param $data 
  8.  
  9.      * @param $fileName 
  10.  
  11.      * @param $type 
  12.  
  13.      * @return bool 
  14.  
  15.      * @throws 
  16.  
  17.      */ 
  18.  
  19.     public function download($header$data$fileName
  20.  
  21.     { 
  22.  
  23.         $config     = [ 
  24.  
  25.             'path' => $this->getTmpDir() . '/'
  26.  
  27.         ]; 
  28.  
  29.         $now        = date('YmdHis'); 
  30.  
  31.         $fileName   = $fileName . $now . '.xlsx'
  32.  
  33.         $xlsxObject = new \Vtiful\Kernel\Excel($config); 
  34.  
  35.         // Init File 
  36.  
  37.         $fileObject = $xlsxObject->fileName($fileName); 
  38.  
  39.         // 设置样式 
  40.  
  41.         $fileHandle = $fileObject->getHandle(); 
  42.  
  43.         $format     = new \Vtiful\Kernel\Format($fileHandle); 
  44.  
  45.         $style      = $format->bold()->background( 
  46.  
  47.             \Vtiful\Kernel\Format::COLOR_YELLOW 
  48.  
  49.         )->align(Format::FORMAT_ALIGN_VERTICAL_CENTER)->toResource(); 
  50.  
  51.         // Writing data to a file ...... 
  52.  
  53.         $fileObject->header($header
  54.  
  55.             ->data($data
  56.  
  57.             ->freezePanes(1, 0) 
  58.  
  59.             ->setRow('A1', 20, $style); 
  60.  
  61.         // Outptu 
  62.  
  63.         $filePath = $fileObject->output(); 
  64.  
  65. // 下载 
  66.  
  67.  header("Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); 
  68.  
  69.         header('Content-Disposition: attachment;filename="' . $fileName . '"'); 
  70.  
  71.         header('Cache-Control: max-age=0'); 
  72.  
  73.         header('Content-Length: ' . filesize($filePath)); 
  74.  
  75.         header('Content-Transfer-Encoding: binary'); 
  76.  
  77.         header('Cache-Control: must-revalidate'); 
  78.  
  79.         header('Pragma: public'); 
  80.  
  81.         ob_clean(); 
  82.  
  83.         flush(); 
  84.  
  85.         if (copy($filePath'php://output') === false) { 
  86.  
  87.             throw new RuntimeException('导出失败'); 
  88.  
  89.         } 
  90.  
  91.         
  92.  
  93.         // Delete temporary file 
  94.  
  95.         @unlink($filePath); 
  96.  
  97.         return true; 
  98.  
  99.     } 
  100.  
  101.     /** 
  102.  
  103.      * 获取临时文件夹 
  104.  
  105.      * @return false|string 
  106.  
  107.      */ 
  108.  
  109.     private function getTmpDir() 
  110.  
  111.     { 
  112.  
  113.       // 目录可以自定义 
  114.  
  115.       // return \Yii::$app->params['downloadPath']; 
  116.  
  117.         
  118.  
  119.         $tmp = ini_get('upload_tmp_dir'); 
  120.  
  121.         if ($tmp !== False && file_exists($tmp)) { 
  122.  
  123.             return realpath($tmp); 
  124.  
  125.         } 
  126.  
  127.         return realpath(sys_get_temp_dir()); 
  128.  
  129.     } 
  130.  
  131.     /** 
  132.  
  133.      * 读取文件 
  134.  
  135.      * @param $path 
  136.  
  137.      * @param $fileName 
  138.  
  139.      * @return array 
  140.  
  141.      */ 
  142.  
  143.     public function readFile($path,$fileName
  144.  
  145.     { 
  146.  
  147.         // 读取测试文件 
  148.  
  149.         $config = ['path' => $path]; 
  150.  
  151.         $excel  = new \Vtiful\Kernel\Excel($config); 
  152.  
  153.         $data   = $excel->openFile($fileName
  154.  
  155.             ->openSheet() 
  156.  
  157.             ->getSheetData(); 
  158.  
  159.         return $data
  160.  
  161.     } 

调用处代码

导出

  1. /** 
  2.  
  3.  * 导出 
  4.  
  5.  */ 
  6.  
  7. public function actionExport() 
  8.  
  9.  
  10.     try { 
  11.  
  12.         /** 
  13.  
  14.          * @var $searchModel SkuBarCodeSearch 
  15.  
  16.          */ 
  17.  
  18.         $searchModel                     = Yii::createObject(SkuBarCodeSearch::className()); 
  19.  
  20.         $queryParams['SkuBarCodeSearch'] = []; 
  21.  
  22.         $result = $searchModel->search($queryParams, true); 
  23.  
  24.         $formatData = []; 
  25.  
  26.         if (!emptyempty($result)) { 
  27.  
  28.             foreach ($result as $key => &$value) { 
  29.  
  30.                 $tmpData      = [ 
  31.  
  32.                     'sku_code'   => $value['sku_code'], 
  33.  
  34.                     'bar_code'   => $value['bar_code'], 
  35.  
  36.                     'created_at' => $value['created_at'], 
  37.  
  38.                     'updated_at' => $value['updated_at'], 
  39.  
  40.                 ]; 
  41.  
  42.                 $formatData[] = array_values($tmpData); 
  43.  
  44.             } 
  45.  
  46.             unset($value); 
  47.  
  48.         } 
  49.  
  50.         $fields = [ 
  51.  
  52.             'sku_code'   => 'SKU编码'
  53.  
  54.             'bar_code'   => '条形码'
  55.  
  56.             'created_at' => '创建时间'
  57.  
  58.             'updated_at' => '更新时间'
  59.  
  60.         ]; 
  61.  
  62.         /** 
  63.  
  64.          * @var $utilService UtilService 
  65.  
  66.          */ 
  67.  
  68.         $utilService = UtilService::getInstance(); 
  69.  
  70.         $utilService->download(array_values($fields), $formatData'sku_single_code'); 
  71.  
  72.     } catch (\Exception $e) { 
  73.  
  74.         Yii::$app->getSession()->setFlash('error''导出失败'); 
  75.  
  76.     } 
  77.  

导入

  1. public function actionImportTmpSku() 
  2.  
  3.     { 
  4.  
  5.         try { 
  6.  
  7.             /** 
  8.  
  9.              * @var $utilService UtilService 
  10.  
  11.              */ 
  12.  
  13.             $utilService = UtilService::getInstance(); 
  14.  
  15.             $path        = '/tmp/'// 文件目录 
  16.  
  17.             $fileName    = 'sku_0320.xlsx'
  18.  
  19.             $excelData   = $utilService->readFile($path$fileName); 
  20.  
  21.             unset($excelData[0]); 
  22.  
  23.             $excelData = array_merge($excelData); 
  24.  
  25.            // ... ... 业务代码 
  26.  
  27.         } catch (\Exception $e) { 
  28.  
  29.             echo $e->getMessage(); 
  30.  
  31.             exit
  32.  
  33.         } 
  34.  
  35.     } 

结论
整体使用下来,在处理大数据量时,性能相比于原来的PHPExcel确实高了很多。

本文系转载,原文地址是:

https://tsmliyun.github.io/php/PHP%E5%AF%BC%E5%87%BAExcel%E7%9A%84%E4%BC%98%E5%8C%96/

Tags: PHP导出Excel

分享到: