Considering i have a 100GB txt file containing millions of lines of text. How could i read this text file by block of lines using PHP?
i can\'t use file_get_
file_get_
i think that you have to use fread($fp, somesize), and check manually if you have founded the end of the line, otherwise read another chunk.
Hope this helps.