I’m reading all of the files in a directory via file_get_contents() and concantenating them into a master file. My script works fine, but now I’d like to skip the first two lines of each file. I don’t think I can use the offset parameter of file_get_contents, because my server’s version of php is 4.3.1.
How would I read everything after the 2nd return. TIA (I’m new to php).