I use Ziparchive class to add textfile to my zip.
The text file is succeffly added but I can't skip lines with
$Zip->addFromString("Readme.txt", "Please visit
For help center");
Thank you for helping
Solved with instead of
(I know this is old but I ran into the same problem today)
If you want to view the file with notepad you need to use instead of . BUT you shouldn't. It will produce problems on mac and linux. Just use Notepad++ or any other Texteditor. will work
And maybe use the term "linebreak" for instead "skip lines"