Skip to content

Commit 7e12197

Browse files
stdexsanmai
authored andcommitted
Update readme
Add note about compatibility issue with func_overload
1 parent 2809d7d commit 7e12197

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ Library support only 2 types of format for writing XLS, also known as Binary Int
6464

6565
Explanation of formats and specifications you can find [here](https://www.loc.gov/preservation/digital/formats/fdd/fdd000510.shtml) (section "Useful references")
6666

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

6869
# Usage
6970

@@ -97,7 +98,7 @@ foreach ($headers as $header) {
9798
$col++;
9899
}
99100

100-
for ($id = 1; $id < $max; $id++) {
101+
for ($id = 1; $id < 100; $id++) {
101102
$data = [
102103
'id' => $id,
103104
'name' => 'Name Surname',

0 commit comments

Comments
 (0)