Bir TextFile.txt üç eintries vardır:
20100220
Hello
Here is Text \n blah \t even | and & and so on...
Ben php yeni bir dize olarak her entrie (line) okumak istiyorum. Ben Fopen ve fgets kullanarak düşündüm. Ama: Ben gibi \ n son satırında özel karakterler kullanıyorum yana doğru, \ n, string sona çünkü, fgets () işe yaramaz? Sonuç olarak son satırı sadece 'İşte Metin konumundadır' olurdu.
How can I read/explode the three lines the right way, so the \n in the last line would be interpreted as a normal string? Thanks!
p.s. By having three lines in my textfile.txt I indirect chose \n as a delimiter, but I could also use another delimiter. what is just the best way to read the content?