mirror of
https://github.com/shuchkin/simplexlsxgen.git
synced 2023-08-10 21:12:59 +03:00
debug example
This commit is contained in:
parent
08e2ae6892
commit
72b9f420d7
12
README.md
12
README.md
@ -48,6 +48,18 @@ SimpleXLSXGen::fromArray( $data )->saveAs('datatypes.xlsx');
|
|||||||
```
|
```
|
||||||
![XLSX screenshot](datatypes.png)
|
![XLSX screenshot](datatypes.png)
|
||||||
|
|
||||||
|
### Debug
|
||||||
|
```php
|
||||||
|
ini_set('error_reporting', E_ALL );
|
||||||
|
ini_set('display_errors', 1 );
|
||||||
|
|
||||||
|
$data = [
|
||||||
|
['Debug', 123]
|
||||||
|
]
|
||||||
|
SimpleXLSXGen::fromArray( $data )->saveAs('debug.xlsx');
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## History
|
## History
|
||||||
v0.9.14 (2020-05-31) fixed num2name A-Z,AA-AZ column names, thx Ertan Yusufoglu<br/>
|
v0.9.14 (2020-05-31) fixed num2name A-Z,AA-AZ column names, thx Ertan Yusufoglu<br/>
|
||||||
v0.9.13 (2020-05-21) if string more 160 chars, save as inlineStr<br/>
|
v0.9.13 (2020-05-21) if string more 160 chars, save as inlineStr<br/>
|
||||||
|
Loading…
Reference in New Issue
Block a user