Statement on glibc/iconv Vulnerability

Vtiful\Kernel\Excel::insertFormula

(PECL xlswriter >= 1.2.1)

Vtiful\Kernel\Excel::insertFormulaВставляет формулу расчёта

Описание

public Vtiful\Kernel\Excel::insertFormula(int $row, int $column, string $formula)

Метод вставляет формулу расчёта.

Список параметров

row

Строка ячейки.

column

Столбец ячейки.

formula

Строка формулы.

Возвращаемые значения

Метод возвращает экземпляр класса Vtiful\Kernel\Excel.

Примеры

Пример #1 Пример вставки формулы

<?php

$config
= [
'path' => './tests'
];

$excel = new \Vtiful\Kernel\Excel($config);

$file = $excel->fileName("free.xlsx")
->
header(['name', 'money']);

for(
$index = 1; $index < 10; $index++) {
$file->insertText($index, 0, 'viest');
$file->insertText($index, 1, 10);
}

$file->insertText(12, 0, "Total");
$file->insertFormula(12, 1, '=SUM(B2:B11)'); // Вставить формулу

$file->output();

?>
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top