Skip to content
Search
Examples

Data frame

Description

Write data to Excel spreadsheets. Supports both XLSX and ODS file formats.

Documentation

Code

<?php

declare(strict_types=1);

use function Flow\ETL\Adapter\Excel\DSL\to_excel;
use function Flow\ETL\DSL\{data_frame, from_array, overwrite};

require __DIR__ . '/vendor/autoload.php';

data_frame()
    ->read(
        from_array([
            ['id' => 1, 'name' => 'John', 'age' => 30],
            ['id' => 2, 'name' => 'Jane', 'age' => 25],
            ['id' => 3, 'name' => 'Bob', 'age' => 35],
            ['id' => 4, 'name' => 'Alice', 'age' => 28],
            ['id' => 5, 'name' => 'Charlie', 'age' => 32],
        ])
    )
    ->collect()
    ->mode(overwrite())
    ->write(to_excel(__DIR__ . '/output.xlsx'))
    ->run();
Contributors

Built in the open.

Join us on GitHub
scroll back to top