Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
Add note about compatibility issue with func_overload
  • Loading branch information
stdex authored and sanmai committed Jul 28, 2020
1 parent 2809d7d commit 7e12197
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -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")

Correct output only guaranteed with `mbstring.func_overload = 0` otherwise, you should use workround `mb_internal_encoding('latin1');`

# Usage

Expand Down Expand Up @@ -97,7 +98,7 @@ foreach ($headers as $header) {
$col++;
}

for ($id = 1; $id < $max; $id++) {
for ($id = 1; $id < 100; $id++) {
$data = [
'id' => $id,
'name' => 'Name Surname',
Expand Down

0 comments on commit 7e12197

Please sign in to comment.