This commit is contained in:
Sergey Shuchkin 2023-01-09 11:51:48 +06:00
parent 6d7608f8ca
commit af53c754c3
1 changed files with 15 additions and 0 deletions

View File

@ -95,6 +95,21 @@ SimpleXLSXGen::fromArray($data)
```
![XLSX screenshot](styles.png)
### RAW Strings
Prefix #0 cell value (use double quotes).
```php
$PushkinDOB = '1799-07-06';
$data = [
['Datetime as raw string', "\0".'2023-01-09 11:16:34'],
['Date as raw string', "\0".$PushkinDOB],
['Disable type detection', "\0".'+12345'],
['Insert greater/less them simbols', "\0".'20- short term: <6 month'],
];
SimpleXLSXGen::fromArray($data)
->saveAs('test_rawstrings.xlsx');
```
### More examples
```php
// Fluid interface, output to browser for download