单元格插入文字

函数原型

  1. insertText(int $row, int $column, string|int|double $data[, string $format])

int $row

单元格所在行

int $column

单元格所在列

string | int | double $data

需要写入的内容

string $format

内容格式

实例

  1. $excel = new \Vtiful\Kernel\Excel($config);
  2.  
  3. $textFile = $excel->fileName("free.xlsx")
  4. ->header(['name', 'money']);
  5.  
  6. for ($index = 0; $index < 10; $index++) {
  7. $textFile->insertText($index+1, 0, 'viest');
  8. $textFile->insertText($index+1, 1, 10000, '#,##0');
  9. }
  10.  
  11. $textFile->output();