1
0
mirror of https://github.com/shuchkin/simplexlsxgen.git synced 2023-08-10 21:12:59 +03:00

added a ; in the Debug section.

This commit is contained in:
appel 2021-11-28 08:48:15 -05:00 committed by GitHub
parent 9a555eef9b
commit 9d82a43fe6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,6 +99,7 @@ ini_set('display_errors', 1 );
$data = [
['Debug', 123]
]
];
SimpleXLSXGen::fromArray( $data )->saveAs('debug.xlsx');
```
```