Writing a spreadsheet, then reading it back through from_excel() - the round trip is the point,
since a written file is invisible in the playground.
Examples
Writing
Description
Documentation
Writers are loaders: they consume Rows and decide what already at the destination means.
Code
<?php
declare(strict_types=1);
use function Flow\ETL\Adapter\Excel\DSL\{from_excel, to_excel};
use function Flow\ETL\DSL\{data_frame, from_array, overwrite, to_output};
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()
->write(to_excel(__DIR__ . '/output.xlsx')->saveMode(overwrite()))
->run();
// the write is the lesson, so read it back through the excel reader and show it
data_frame()
->read(from_excel(__DIR__ . '/output.xlsx'))
->collect()
->write(to_output(truncate: false))
->run();