PHP code example of staf4 / spout

1. Go to this page and download the library: Download staf4/spout 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/ */

    

staf4 / spout example snippets


use Box\Spout\Writer\Style\StyleBuilder;
use Box\Spout\Writer\WriterFactory;

// Инициализация
$excel = WriterFactory::create(\Box\Spout\Common\Type::CSV);
// Установка разделителя
$excel->setFieldDelimiter(';');
// Открытие файла для записи
$excel->openToBrowser('file.csv', true); // если не нужно доравбять заголовки - false
// Добавление заголовков
$excel->addRowWithStyle(['Столбец 1', 'Столбец 2'], null);
// Добавление данных
$excel->addRowWithStyle(['Данные 1', 'Данные 2'], null);
// Вывод
$excel->close();
exit();