12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace app\index\model;
- require_once(VENDOR . '\phpoffice\PHPExcel\IOFactory.php');
- class Sales
- {
- private $excel;
- private $sheet_namas;
- private $first_sheet_name;
- public $data;
- public function __construct()
- {
- $this->excel = \PHPExcel_IOFactory::load('Z:\Public\2020xsjl.xls');
- $this->getFirstSheets();
- }
-
- * 获取所有工作表名
- */
- private function getSheetNames()
- {
- $this->sheet_namas = $this->excel->getSheetNames();
- $this->first_sheet_name = $this->sheet_namas[0];
- }
-
- * 获取第一个 sheet 的所有数据
- */
- private function getFirstSheets()
- {
-
- $this->getSheetNames();
-
- $this->excel->setActiveSheetIndexByName($this->first_sheet_name);
-
- $curSheet = $this->excel->getActiveSheet();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $this->data = $curSheet->toArray();
- }
- }
-
|