excel类型默认7改为5

feat/task1-c-wallet
xindan 2021-10-13 12:15:02 +08:00
parent 4f437f5350
commit beab3cdb25
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class Excel
$this->warap_text = isset($params['warap_text']) ? intval($params['warap_text']) : 1;
// excel写入类型
$this->writer_type = empty($params['writer_type']) ? 'Excel2007' : trim($params['writer_type']);
$this->writer_type = empty($params['writer_type']) ? 'Excel5' : trim($params['writer_type']);
// 引入PHPExcel类库
require ROOT.'extend'.DS.'phpexcel'.DS.'PHPExcel.php';