(PECL xlswriter >= 1.2.1)
Vtiful\Kernel\Excel::insertText — Вставляет текст
$row
,$column
,$data
,$format
= ?Метод вставляет текст в ячейку.
row
Строка ячейки.
column
Столбец ячейки.
data
Данные для записи.
format
Формат строки.
Метод возвращает экземпляр класса Vtiful\Kernel\Excel.
Пример #1 Пример вставки текста
<?php
$config = [
'path' => './tests'
];
$excel = new \Vtiful\Kernel\Excel($config);
$file = $excel->fileName("free.xlsx")
->header(['name', 'money']);
for ($index = 0; $index < 10; $index++) {
$file->insertText($index+1, 0, 'viest');
$file->insertText($index+1, 1, 10000, '#,##0');
}
$textFile->output();
?>