1. Go to this page and download the library: Download topvisor/xlsx-creator library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
topvisor / xlsx-creator example snippets
$workbook = new \Topvisor\XlsxCreator\Workbook($xlsxFilename); // инициализация библиотеки
$sheetName = 'Sheet1'; // имя таблицы
$worksheet = $workbook->addWorksheet($sheetName); // создание таблицы
$values = ['test1', 'test2', 3, 4]; // значения ячеек строки
$worksheet->addRow($values); // создание строки
$xlsxFilename = __DIR__.'/example1.xlsx'; // путь, по которому будет создан xlsx файл
$workbook->toFile($xlsxFilename); // создание xlsx файла
// Фиксирует книгу
$workbook->commit();
// Фиксирует таблицу
$worksheet->commit();
// Фиксирует строку (и все предыдущие)
$row->commit();
bash
git clone https://github.com/topvisor/xlsx-creator.git
cd xlsx-creator
composer install
php examples/simple.php
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.