赛亿提成统计系统

Sales.php 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace app\index\model;
  3. require_once(VENDOR . '\phpoffice\PHPExcel\IOFactory.php');
  4. class Sales
  5. {
  6. private $excel;
  7. private $sheet_namas;
  8. private $first_sheet_name;
  9. public $data;
  10. public function __construct()
  11. {
  12. $this->excel = \PHPExcel_IOFactory::load('Z:\Public\2020xsjl.xls');
  13. $this->getFirstSheets();
  14. }
  15. /**
  16. * 获取所有工作表名
  17. */
  18. private function getSheetNames()
  19. {
  20. $this->sheet_namas = $this->excel->getSheetNames();
  21. $this->first_sheet_name = $this->sheet_namas[0];
  22. }
  23. /**
  24. * 获取第一个 sheet 的所有数据
  25. */
  26. private function getFirstSheets()
  27. {
  28. // 获取所有工作表名
  29. $this->getSheetNames();
  30. //根据表名切换当前工作表
  31. $this->excel->setActiveSheetIndexByName($this->first_sheet_name);
  32. //得到当前工作表对象
  33. $curSheet = $this->excel->getActiveSheet();
  34. // //获取当前工作表最大行数
  35. // $rows = $curSheet->getHighestRow();
  36. // //获取当前工作表最大列数,返回的是最大的列名,如:B
  37. // $cols = $curSheet->getHighestColumn();
  38. // //将当前工作表名当键,内容为值存入数组
  39. // $data = [];
  40. // //大写字母A的ASCII值是65 A-Z对应65-90
  41. // // for($j = 'A'; $j <= $cols; $j++ ){
  42. // // for($k = 1; $k <= $rows; $k++){
  43. // // $key = $j.$k;
  44. // // $value = $curSheet->getCell($key)->getValue();
  45. // // $data[$key] = $value;
  46. // // }
  47. // // } 结果为一维数组
  48. // 调用 PHPExcel_Worksheet toArray 方法
  49. $this->data = $curSheet->toArray();
  50. }
  51. }