Update readme
Add note about compatibility issue with func_overload
This commit is contained in:
parent
2809d7d97b
commit
7e12197d2b
|
|
@ -64,6 +64,7 @@ Library support only 2 types of format for writing XLS, also known as Binary Int
|
||||||
|
|
||||||
Explanation of formats and specifications you can find [here](https://www.loc.gov/preservation/digital/formats/fdd/fdd000510.shtml) (section "Useful references")
|
Explanation of formats and specifications you can find [here](https://www.loc.gov/preservation/digital/formats/fdd/fdd000510.shtml) (section "Useful references")
|
||||||
|
|
||||||
|
Correct output only guaranteed with `mbstring.func_overload = 0` otherwise, you should use workround `mb_internal_encoding('latin1');`
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
|
|
||||||
|
|
@ -97,7 +98,7 @@ foreach ($headers as $header) {
|
||||||
$col++;
|
$col++;
|
||||||
}
|
}
|
||||||
|
|
||||||
for ($id = 1; $id < $max; $id++) {
|
for ($id = 1; $id < 100; $id++) {
|
||||||
$data = [
|
$data = [
|
||||||
'id' => $id,
|
'id' => $id,
|
||||||
'name' => 'Name Surname',
|
'name' => 'Name Surname',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue