Hello,
I am creating several docx files:
for ($i = 0; $i < $numClients; $i++){
$docx = new CreateDocx();
$docx->setEncodeUTF8();
...
$docx->createDocx($dir.$filename);
}//for
Each docx file has the same information, but the size of each file is increasing. Example:
- First docx generated --> 12 Kb
- Second docx generated --> 14 Kb
- Third docx generated --> 17 Kb
- Fourth docx generated --> 20 Kb
- ...
Which is the reason why each file has a larger size than the previous one?.
Thanks