• 读取文件已支持 windows 系统,版本号大于等于 1.3.4.1
  • 扩展版本大于等于 1.2.7
  • PECL 安装时将会提示是否开启读取功能,请键入 yes

测试数据准备

  1. $config = ['path' => './tests'];
  2. $excel = new \Vtiful\Kernel\Excel($config);
  3. // 写入测试数据
  4. $filePath = $excel->fileName('tutorial.xlsx')
  5. ->header(['', 'Cost'])
  6. ->data([
  7. [],
  8. ['viest', '']
  9. ])
  10. ->output();

示例一

  1. // 读取全量数据, 并忽略第一行
  2. $data = $excel->openFile('tutorial.xlsx')
  3. ->openSheet('Sheet1')
  4. ->setSkipRows(1)
  5. ->getSheetData();

示例二

  1. // 读取全量数据, 并忽略第一行 和 第二行
  2. $data = $excel->openFile('tutorial.xlsx')
  3. ->openSheet('Sheet1')
  4. ->setSkipRows(2)
  5. ->getSheetData();