固定内存导出

内存

最大内存使用量 = 最大一行的数据占用量

函数原型

  1. constMemory(string $fileName);

实例

  1. $config = ['path' => './tests'];
  2. $excel = new \Vtiful\Kernel\Excel($config);
  3.  
  4. $fileObject = $excel->constMemory('tutorial01.xlsx');
  5. $fileHandle = $fileObject->getHandle();
  6.  
  7. $format = new \Vtiful\Kernel\Format($fileHandle);
  8. $boldStyle = $format->bold()->toResource();
  9.  
  10. $fileObject->header(['name', 'age'])
  11. ->data([['viest', 21]])
  12. ->setRow($boldStyle, 'A1')
  13. ->output();