2026-05-16 00:36:34 +00:00

13 lines
297 B
PHP

<?php
require_once(implode(DIRECTORY_SEPARATOR, [__DIR__, '..', 'src', 'SimpleXLSXGen.php']));
$xlsx = new \Shuchkin\SimpleXLSXGen();
$xlsx->addSheet([
["foo", "bar"],
["something", '<style nf="DD.MM.YYYY">2024-01-01</style>'],
]);
$xlsx->saveAs(basename(__FILE__, ".php") . '.xlsx');